嵌入式linux,串口初始化时,无法设置串口属性
各位好,请教大家一个问题,
在arm板子上写一个串口通讯的代码
在初始化串口的时候,一旦进行设置,就会死在设置函数中
比如这么做:
int fd;struct termios options;fd = open("/dev/ttyAMA0", O_RDWR | O_NOCTTY);tcgetattr(fd, &options);tcsetattr(fd,TCSANOW,&options);
options.c_cflag |= (CLOCAL | CREAD); tcflush( fd , FLUSHMETHOD);
[解决办法]
或者用tcflush(fd,TCIOFLUSH);