将硬件配置完全相同的A、B两块板子的串口直连(TX,RX反接), 两者可以互通数据。
但从A用 read读取 B发送来的数据时,有时会出现只读取到一部分的情况。 需要再次read,
才能读取出B发送内容的后面部分。
而在B上的 write 函数中, 其返回值与 要写入的长度是相等的, 即,从B上的write来看,其执行
是正确的。
我的疑问是, 为何有时会出现read 不全的情况存在? 每次read的buf和长度都是足够的。
下面是我的 open 等部分函数, 个人猜测是不是设置上哪里的问题?还望各位指点下, 非常感谢!
int open_port(int fd,int comport)
{
char *dev[]={"/dev/ttyS0","/dev/ttyS1","/dev/ttyS2"};
fd = open(dev[comport], O_RDWR|O_NOCTTY|O_NDELAY);
if (-1 == fd)
{
perror("Can't open serial port ");
return (-1);
}
debug("open ttyS%d \n", comport);
if(fcntl(fd, F_SETFL, 0)<0)
debug("fcntl failed!\n");
else
debug("fcntl=%d\n",fcntl(fd, F_SETFL,0));
if(isatty(STDIN_FILENO)==0)
debug("standard input is not a terminal device\n");
else
debug("isatty success!\n");
debug("fd-open=%d\n",fd);
return fd;
}
int set_opt(int fd,int nSpeed, int nBits, char nEvent, int nStop)
{
struct termios newtio,oldtio;
if ( tcgetattr( fd,&oldtio) != 0)
{
perror("SetupSerial 1");
return -1;
}
bzero( &newtio, sizeof( newtio ) );
newtio.c_cflag |= CLOCAL | CREAD;
newtio.c_cflag &= ~CSIZE;
switch( nBits )
{
case 7:
newtio.c_cflag |= CS7;
break;
case 8:
newtio.c_cflag |= CS8;
break;
}
switch( nEvent )
{
case 'O': //奇校验
newtio.c_cflag |= PARENB;
newtio.c_cflag |= PARODD;
newtio.c_iflag |= (INPCK | ISTRIP);
break;