2
votes
3answers
111 views
Unable to open serial port in .NET
I am trying to open COM1, but get a strange error every time I call SerialPort.Open().
The error is:
The given port name does not start with COM/com or does not resolve to a v …
2
votes
2answers
21 views
Reading from serial port fails
I have the following C program:
#include <fcntl.h>
#include <termios.h>
#include <stdio.h>
int main()
{
int fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY | O_NO …
0
votes
2answers
57 views
Unable to debug the kernel driver using Serial cable
I am new to driver stuff. I have tried to debug the kernel driver using serial COM port without success. Could someone show me proper direction how to fix the problem?
I am seein …
1
vote
3answers
94 views
Using Printf to display on serial port of an ARM microcontroller
I would like to use printf to diplay text on a serial port of an ARM microcontroller. I am unable to do so. Any help is appreciated.
My init_serial looks like this
void init_ser …
3
votes
3answers
66 views
C#: Timeout on SerialPort.Open?
I have an autodetect thread that tries to open the ports in order and match the received data, thus detecting the port where the relevant device sends the data. Now, there are some …
1
vote
1answer
46 views
Java RS232 Comm on Vista-64 bit
We have a Java application which needs to communicate with a peripheral device over Virtual Serial COM port. We use the RS232 Java COMM API (javax.comm.properties, comm.jar, win32c …
2
votes
1answer
52 views
C#: Proper way to close SerialPort with Winforms
I have an app where I read from the serialport, everything goes fine, until I close the app. When I click on the [X] the app simply hangs, the UI: unresponsive.
I read from the po …
0
votes
3answers
99 views
Read information from a serial port in VB.net 2008
I'm at a brick wall!
I have a teperature PCB that reports the temp back via serial port.
I can open Hyper Terminal and receive all the data I want - so I know the unit is working …
0
votes
2answers
50 views
How to integrate iPhone with other non iPhone devices using serial port?
Hi Guys,
Anybody knows how to integrate iPhone with other non-iPhone devices using serial port? Please help me
Thanks in advance
Regards
Jayaraj
1
vote
6answers
202 views
SerialPort data loss - C#
Hi guys-
I'm working on a SerialPort app and one very simple part of it is giving me issues. I simply want to read a constant stream of data from the port and write it out to a bi …
2
votes
0answers
25 views
Serial / Com Port monitor for Windows x64
Can anyone recommend any good Com port monitor tools, like Portmon, which also work on Windows x64? Ideally something open source / freeware would be good.
4
votes
2answers
88 views
How do I continuously send and receive with wireless serial-port in 8051?
Hello everyone!
I'm trying to make a microcontroller communicate with a program on my desktop. I'm using serial port connections with Xbee radios on both ends.
The communication …
2
votes
0answers
174 views
Clinical Lab Interface programming
Hi,
I am a .NET programmer.
Are there any web based resources to pick up Clinical laboratory interface programming, using Serial Ports and ASTMH protocol ? Or any books ?
When i …
1
vote
1answer
56 views
Faking an RS232 Serial Port
I'm developing a project that has a number of hardware sensors connecting to the deployment machine through RS232 serial ports.
But ... I'm developing on a machine without an phys …
1
vote
4answers
150 views
Linux - serial port read returning EAGAIN…
Hello all!
I am having some trouble reading some data from a serial port I opened the following way. I've used this instance of code plenty of times and all worked fine, but now, …
