语言C串行端口:读取非规范模式

时间:2019-02-11 08:28:14

标签: c linux serial-port termios

我正在尝试从STM32 Nucleo开发板获取数据(但这并不重要^^)。 我想获取原始数据并使用非规范模式,并且一切均已设置。 我将VMIN设置为7,以等待直到未读7个字符,并且读也等待7个字符。 但是我的读之前返回值以获得7个值,我不明白为什么。 你有什么主意吗 ?我是否以错误的方式理解了VMIN? 感谢您的帮助!

我的代码:

int main(){
int r=-1;
char * device = "/dev/ttyS3";
pt = open(device, O_RDWR | O_NOCTTY | O_SYNC);
if(pt == -1){
    perror("open");
    exit(-1);
}
printf("open : %d\n",pt);
ioctl(pt, I_SRDOPT, RMSGD);
tcgetattr(pt, &old);
atexit(reset_tty);

tcgetattr(pt, &tty); // Get the current attributes of the Serial port

//cfmakeraw(&tty);
tty.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON | IXOFF);
tty.c_oflag &= ~(OPOST);
tty.c_cflag |= (CS8);
tty.c_cflag &= ~(CSIZE|PARENB);
tty.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
tty.c_cc[VMIN] = 7; // wait 7 characters
tty.c_cc[VTIME] = 0;
cfsetispeed(&tty,B9600); // Setting the Baud rate 
cfsetospeed(&tty,B9600);

sleep(1);
r = tcflush(pt, TCIFLUSH);
printf("tcflush : %d\n",r);

r = tcsetattr(pt, TCSANOW, &tty);
printf("tcsetattr : %d\n",r);
int i = 0;
char end[20];

int count = 0;
char line[20];
memset(line,0,sizeof(line));
char forWrite[2]={'A','\0'};

while(count<10){
    r = read(pt ,line,7);
    printf("number of characters : %d\n",r);
    printf("line = %s\n",line);
    //printf("l = %c\n",line[0]);
    count++;
    memset(line,0,sizeof(line));
    printf("\n");
}
return 0;
}

我的输出:

number of characters : 1
line =

number of characters : 2
line = 12

number of characters : 2
line = 33

number of characters : 5
line = 456ab

number of characters : 5
line = cdefg

number of characters : 1
line = a

number of characters : 4
line = bcde

number of characters : 2
line = fg

number of characters : 1
line = 1

number of characters : 3
line = 233

我正在从我的STM32发送“ abcdefg”,然后是“ 1234567”

编辑:我发布的代码和输出是匹配的,为了让您更清晰,我刚刚更改了打印内容……但我失败了^^,现在进行了编辑:)

1 个答案:

答案 0 :(得分:0)

我不知道这是怎么回事,但是“慢速”设备(例如串行端口)上的read()(和其他I / O接口)将在等待期间收到信号后立即返回完成。