3
votes
2answers
2k views
Serial port communication: polling serial port vs using serial port DataReceived event
I am just reviewing some code I wrote to communicate with the serial port in C# on CF2.0.
I am not using DataReceived event since it's not reliable. …
3
votes
5answers
2k views
Converting serial port data to TCP/IP in a linux environment
Thank you in advance. I need to get data from the serial port of a linux system and convert it to TCP/IP to send to a server. Is this difficult to do? I have some basic programming experience but n …
4
votes
6answers
2k views
Programmatically talking to a Serial Port in OS X or Linux
I have a Prolite LED sign that I like to set up to show scrolling search queries from a apache logs and other fun statistics. The problem is, my G5 does not have a serial port, so I have to use a u …
1
vote
4answers
203 views
Serial Port Redirection or Splitting
I am looking for a book and or a code sample of how to do serial port redirection or port splitting. I write a lot of com port applications and want to write a monitor application that will allow …
3
votes
5answers
425 views
Read data from serial port
How do i read data from serial port using C ? and then again transfer the data to modem ?
I am using RS 232 cable for serial communication ...
…
1
vote
3answers
892 views
Reading file from serial port in Java
Hi,
i'm beginner in java technology, I have to read file from port. Frst I'll write "FLASH" to outputstream then I'll get response as a "FLASH_OK" from target device, after getting FLASH_OK as resp …
0
votes
4answers
223 views
Serial input through Parallel port
Can any ony kindly explain that how we can take serial data as input from parallel port using c#.
Or the serial communication through parallel port.
…
0
votes
1answer
1k views
how to read and write from the serial port with java
I want write data to serial port then I'll get reply again I've to write data to the serialport. But the problem is, when I write at first time I'll get reply also but I couldn't write at second. …
8
votes
10answers
1k views
How do I configure and communicate with a serial port?
I need to send and receive data over serial connections (RS-232 and RS-422).
How do I set up and communicate with such a connection? How do I figure out what the configuration settings ( …
1
vote
8answers
2k views
Javascript interface with RS-232 Serial Port
I am currently working on a project that involves a 4 Port A/V switch. This switch can be controlled via RS-232.
The computer that will interface with the switch runs Vista. I would like …
3
votes
4answers
688 views
How do I get Java to use the serial port in Linux?
We make use of a java application that manages a pinpad via the serial port.
This works perfectly on windows with the Sun Comm.jar, the supplied dll and the properties file.
Now we are atte …
10
votes
4answers
4k views
Virtual Serial Port for Linux
I need to test a serial port application on Linux, however, my test machine only has one serial port.
Is there a way to add a virtual serial port to Linux and test my application b …
2
votes
3answers
536 views
Meaning of serial port parameters in Java?
I'm a beginner in Java. I'm reading data from the serial port. I got
serialPort.setSerialPortParams(
9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1,
SerialPort.PARITY_NON …
2
votes
4answers
340 views
Compact Framework serial port and balance
So, to open up a serial port and successfully transmit data from the balance through the serial port, i need to make sure that the settings on the serialPort object match the actual settings of the …
2
votes
5answers
479 views
Send file over serial port with Linux and C
Hi all, i'm developing an application that reads data from a serial port and sends it over a TCP connection, and vice versa. Unfortunately, while reading data from serial port, it never stops. It d …
