I've got a C/Python setup on my machine, I'm doing some testing with serial communications and for some reason I'm never reading more than 1 byte back.
My set up: I have a windows 7 machine, running OpenSUSE in a virtual box. I have 2 USB-RS232 converters and an adaptor between them (so it's a loop from one usb port to the other).
On the Windows side I was able to get them to communicate with each other via Python-to-Python, and C-to-Python. Once I use the Linux VM, I can get data from the C (Linux) to the Python (Windows), but when I do it the other way around I only get 1 byte back. I'm thinking it's something wrong with how I open the file or execute the read on the Linux C code, but I'm not sure what could be the issue.
Python Code (using PySerial):
>>> import serial
>>> ser = serial.Serial(3)
>>> ser
Serial<id=0x2491780, open=True>(port='COM4', baudrate=9600, bytesize=8,
parity='N', stopbits=1, timeout=None, xonxoff=False, rtscts=False, dsrdtr=False)
>>> ser.read(5)
'Hello'
>>> ser.write("hi you")
6L
The C code:
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>
int open_port()
{
int fd;
fd = open("/dev/ttyUSB0", O_RDWR | O_NOCTTY | O_NDELAY);
if(fd < 0)
perror("open_port: Unable to open /dev/ttyUSB0 - ");
else
fcntl(fd, F_SETFL, 0);
return fd;
}
int swrite(int fd, char * str)
{
int n;
n = write(fd, str, strlen(str));
if (n<0)
printf("write() of %d bytes failed\n", strlen(str));
return n;
}
int main()
{
int fd, databytes;
char buf[100] = {0};
struct termios options;
fd = open_port();
//Set the baud rate to 9600 to match
tcgetattr(fd, &options);
cfsetispeed(&options, B9600);
cfsetospeed(&options, B9600);
tcsetattr(fd, TCSANOW, &options);
tcgetattr(fd, &options);
databytes = swrite(fd, "Hello");
if(databytes > 0)
printf("Wrote %d bytes\n", databytes);
databytes = read(fd, buf, 100);
if(databytes < 0)
printf("Error! No bytes read\n");
else
printf("We read %d bytes, message: %s\n", databytes, buf);
close(fd);
return 0;
}
And I'm getting back:
mike@linux-4puc:~> gcc serial_com.c
mike@linux-4puc:~> ./a.out
Wrote 5 bytes
We read 1 bytes, message: h
So the Linux->Windows write is working, python is showing the correct "Hello" string, but for some reason I'm only getting one byte back on the Windows->Linux side of things.
Anyone see anything wrong?
EDIT:
Based on the feedback that I've gotten, I've tried two tweaks to the code. Sounds like I can't guarantee that all the data will be there, so I've tried:
1) a sleep
if(databytes > 0)
printf("Wrote %d bytes\n", databytes);
sleep(15); // Hack one to get the data there in time, worked
databytes = read(fd, buf, 100);
2) a while loop
while(1){ // Hack two to catch the data that wasn't read the first time. Failed
// this only saw 'h' like before then sat waiting on the read()
databytes = read(fd, buf, 100);
if(databytes < 0)
printf("Error! No bytes read\n");
else
printf("We read %d bytes, message: %s\n", databytes, buf);
}
Seems the loop doesn't work, so does the data not read get trashed?? /EDIT
