Serial means "one at a time." Please use a more specific tag such as [serial-port] or [serialization].
0
votes
0answers
9 views
Fonts on serial console and framebuffer console
I am working on frambuffer and serial console, serial console is basically a default console to see debug messages where framebuffer console is an advance console which can also show small graphics.
I ...
1
vote
2answers
337 views
Concurrent functions running in separate process using pygame and multiprocessing
Suppose we want to drive an autonomous car by predicting image labels from a previous set of images and labels collected (A Machine Learning application). For this task, the car is connected via ...
2
votes
3answers
278 views
GCD serial queue does not seem to execute serially
I have a method that at times can be invoked throughout my code. Below is a very basic example, as the code processes images and files off of the iphone photo gallery and marks them already processed ...
0
votes
1answer
266 views
Synchronous functions without callbacks
Assume I have these two functions:
function complex() {
setTimeout(function() {
console.log('complex setTimeout');
}, 1000); // assume this value is random
...
2
votes
2answers
101 views
Does javascript load serially on every browser?
if i have multiple javascript file on a page, will it always load serially across browser?
<script src='test1.js'></script>
<script src='test2.js'></script>
<script ...
1
vote
0answers
34 views
mod_python does not process multiple requests from the same browser simultaneously for the same file
I have a page which can take long time to process. But in the mean time if the same page is accessed (from the same system), the second instance gets blocked till the first page finishes. Actually ...
0
votes
1answer
68 views
PBS running multiple instances of the same program with different arguments
How do you go about running the same program multiple times but with different arguments each instance on a cluster, submitted through a PBS. Also, is it possible to designate each of these programs ...
2
votes
1answer
528 views
JPA SequenceGenerator and GeneratedValue: name / generator property unique only per class?
I use JPA + OpenJPA with PostgreSQL as backend RDBMS. The primary keys of my tables usually consist of a SERIAL / BIGSERIAL column. So PostgreSQL automatically generates IDs for new entries ...
1
vote
1answer
162 views
ASP.NET - Storing Article View Count in Database
I am building a Wiki / Blog similar application, and I have a question about the best way to store the View Count for each of the articles. The requirement is that I only want to store the unique ...
0
votes
1answer
152 views
accessing threads continually in tkinter loop
I am trying to make a GUI that continually plot a signal received from a micro processor. I have tried to make this happen by use of classes only, but that failed since only the GUI class was oppend. ...
0
votes
3answers
239 views
AFNetworking - Serialize Connection
I use AFNetworking as my connection lib to my app. Due to the back-end restrictions, I cannot send two request simultaneously when the app starts because the server will identify a ...
2
votes
1answer
171 views
How to read true/false response from server-side script to return true/false to a jQuery function?
I have a jQuery process that I want to run, but only if a response from a PHP script is true.
I want to check the output of a few different PHP scripts every 2 seconds, which will determine whether ...
4
votes
4answers
150 views
How to declare a c# variable for a picked item from a combobox
How do I create a public variable for a selected value in my comboBox1 so that it can be used in every button so I don't have to repeat it for every button? For every button I have:
var portNum = ...
1
vote
1answer
67 views
Sessionless HTTPHandler
Can't find this anywhere.
Is it possible to make an HTTPHandler sessionless?
Sometimes I export huge files that take some time to build. Waiting for an ashx to finish jams up the rest of my ...
1
vote
1answer
222 views
symfony2 doctrine table lock
I am not sure this is the preferred method, but I want to present my solution and see if you symfony2 wizards out there have enlightening comments on this.
I am registering financial transactions in ...
0
votes
1answer
59 views
Join incomplete string Objective-c
I'm not sure how to title this, let alone explain it well, but here it goes.
I currently have this method:
- (void) receivedData:(NSString *)data {
}
It triggers when serial data is read. The ...
1
vote
1answer
512 views
How to use Node.js nested Async forEachSeries loop
Using coffeescript to code
One solution | see this post
I have two loops. I want to take each value from array 'a' and then loop through all the values of 'b' process them and move to next value in ...
2
votes
3answers
232 views
How do I ensure that a Python while-loop takes a particular amount of time to run?
I'm reading serial data with a while loop. However, I have no control over the sample rate.
The code itself seems to take 0.2s to run, so I know I won't be able to go any faster than that. But I ...
-2
votes
1answer
156 views
Is there an rs232 analyzer tool that supports 100 baudrate in windows or linux? [closed]
I am looking to know if there is an rs232 analyzer tool that supports 100 baudrate in windows or linux.
1
vote
2answers
431 views
How to mathematically extract milliseconds, seconds and minutes from a serial date with an Excel-formula?
How can one calculate the seconds in a Excel serial date/time, linke in the example below, without the use of the SECOND() function which (I believe) rounds or cell-formatting? How can i extend this ...
0
votes
2answers
255 views
Postgresql wrong auto-increment for serial
I have a problem on postgresql which I think there is a bug in the postgresql, I wrongly implement something.
There is a table including colmn1(primary key), colmn2(unique), colmn3, ...
After an ...
0
votes
2answers
121 views
Using PHP with Google serial notification (IPN)
I'm trying to figure out how to get this working with PHP. I have a working IPN for paypal that is less than 20 lines of code to get the data I need. I have tried reading the Google docs but they are ...
1
vote
1answer
170 views
CAN communication questions
I started down this path because I've got a CAN driver in uCLinux that I'm reviewing. I'm new to CAN in general so I was doing a little research about it and I've stumbled upon a question that I ...
0
votes
1answer
121 views
Concurrent or Serial queue for Reading or Writing
I'm writing an NSObject subclass similar to that of NSCache, which enables file caching to the disk on an iOS Device.
I am in the process of writing the queues for (i) reading (ii) writing, but I ...
1
vote
3answers
513 views
IR transmitter for Air Conditioner using PC Serial Port
I have to control an air conditioner from pc serial port using IR LED, When I am reading the IR data from the serial port It gives nearly 160 characters, But actually my AC remote may send a ...
0
votes
1answer
236 views
FL2440 board with 4.3" LCD bootloader issue
Recently, I bought a FL2440 (with 4.3" LCD) board and I am facing a weird issue:
Host Machine: Processor - DualCore, OS - Ubuntu
Target board: FL2440 with with 4.3" LCD
I connect the board with PC ...
0
votes
2answers
447 views
Capturing serial data in background process
I am currently trying to capture serial data within a python script. I intend to begin capturing a log of all the data captured on a serial port while the rest of the script continues to interact with ...
0
votes
1answer
369 views
Problems interfacing Arduino with Java
I followed the Interfacing with Java tutorial, but ran into some problems on testing. Currently my Arduino program works fine when I try with manual inputs.
Segment of C Code on Arduino:
char ...
0
votes
1answer
297 views
signal callback and pthread sync
On my app I have a pthread running a while(1) that read a socket client and a serial callback function. My app receive messages from a serial (like /dev/ttyS0) and receive messages from socket. The ...
9
votes
3answers
1k views
Is there go up line character? (Opposite of \n)
I would like to overwrite something on a line above in in a serial console. Is there a character that allows me to move up?
Thank you.
2
votes
1answer
485 views
Is there a cross platform c++ serial port library that can enumerate ports?
I am looking for a c++ library that can connect to and communicate with serial port devices. I need one that can be used on windows and linux. I have found "serialib" already but this has no feature ...
0
votes
1answer
632 views
Communication between and Arduino controller and a Qt Application
My brother has asked for help on this great side project he has been working on, but the tools he is using are new to me and I am not sure where to start reading.
The problem is this: We have an ...
0
votes
1answer
2k views
LabVIEW Tutorial with Serial Connection
Does anyone know where a good LabVIEW Tutorial on Serial Connections (RS232).
Any help is appreciated.
Thanks.
1
vote
1answer
1k views
Writing and reading mutiple serial ports on an Arduino
I'm using an Arduino mega which has 4 serial ports. On the main serial port continuously sending and receiving data between the Arduino and a computer. The computer is doing some calculations and ...
0
votes
0answers
480 views
Serial Port: Unable to Send/Receive Data
I have been working on a program in Visual C# that will eventually be fed a stream of data to populate a database via serial port. I have never did anything with serial ports so please bare with me. ...
5
votes
1answer
597 views
How to get mobile numbers if my android phone have two SIM cards?
I have implemented an application for get the SIM cards mobile numbers from my Google Ebony QWERTY touchscreen.In this device i have two SIM cards.I have used TelephonyManager for get mobile number ...
0
votes
1answer
181 views
Default settings for IrDA discovery (baud, bits, stop, parity, flow control, etc)
I'm attempting to write a tool that uses IrDA to communicate with Uwatec dive computers...on a Mac. The USB IrDA device I'm using provides a serial device (/dev/cu.IrDA-IrCOMM0 and ...
0
votes
2answers
142 views
Sign-extending on serial communication with termios and uint8_t
I'm trying to write bytes using the write() Unix system call, but any 8-bit value I send that starts with 1 is turned into a 32-bit value. I've tried looking to see if there are any termios flags to ...
0
votes
2answers
676 views
Java Reading from serial port in Ubuntu
I am reading from and writing to a USB serial port in Ubuntu using the standard /dev/ttyUSB0 file that the operating system provides for me. I do all the hard work in a class that extends Thread:
...
1
vote
3answers
2k views
Start new line with serial communication
I am trying to get an arduino to tell my computer what the state of it's relays is. And for some reason every time it sends a new string PuTTY leaves the horizontal position of the last text. This ...
0
votes
2answers
581 views
How to use bluetooth module?
I recently purchased a Bluetooth module from China. Now that I have it I have no idea how to use it. I cannot even get my computer to find it. I have tried connecting the "mode pin" to ground and ...
0
votes
2answers
180 views
PySerial communication with variables
I am trying to interface with my Arduino via Pyserial on OS X. I am controlling LEDs with sending numbers from 0 to 9.
The code as in
import serial
arduino = serial.Serial('/dev/tty.usbserial', ...
1
vote
1answer
101 views
Save output from Lilypad Arduino
When we call the Serial.println function in the sketch it print the output to Serial channel.
Is there a way to get the output later when the LilyPad is connected to a PC and save it to disk in PC?
2
votes
2answers
189 views
How can I made a button that is only visible at a specific page? (Inno Setup)
I have made a button in the wizard pages. But I only want to show that button on this serial form page. Now, the button is showed at all wizard pages. How can I let it show only at the serial page?
...
0
votes
0answers
222 views
Python : thread shuts down after receiving 0f byte over serial port
I am making program for communication with cash register, and while i was testing printer on it (printing numbers from 0 to 100), I noticed that every time i get this byte (0f in hex) and my thread ...
1
vote
1answer
1k views
Android Tablet to Serial Port Device Connection
I have a vending machine that can communicate with an external device using a serial port connection. I have been able to bridge my computer with the vending machine using a USB → serial port setup. ...
1
vote
1answer
327 views
How can i set the serial for this serial form (Inno Setup)
I was looking for a serial script and I found one here:
CustomPage for Serial Number in Inno Setup
But how can I set the serial because all serials are valid now.
Thanks for your answer!
0
votes
0answers
217 views
asyncron data reading, data splitting
I am trying to read data from RS232 (Serial Port) with c#. That program is going to be my SCADA. So I need to get significant data from incoming datas.
But I see something like that:
...
0
votes
2answers
448 views
python pyserial writing more than once to serial port
I am writing and reading from the same serial port. Here is what problem is:
When I write to serial port one after another, like in the code below:
import serial
import array
rec = serial.Serial()
...
1
vote
2answers
639 views
How do I reset my Arduino Mega2560 with my C# application?
I noticed the Arduino IDE automatically resets on startup/exit by the built in serial application due to
one of the hardware flow control lines (DTR) of the FT232RL is connected to the reset line ...





