我有一个netcore应用程序,它打开串行端口,一旦检测到奇偶校验错误,就会在控制台上写入“奇偶校验错误”。它在Windows 10中运行良好,但在Linux下无法运行。
我的假设是操作系统不会将奇偶校验错误传递给netcore。
要检查我运行的端口设置:
stty -D /dev/ttyS0 -ignpar inpck
然后我跑:
stty -D /dev/ttyS0 -a
而且设置似乎像预期的那样正确设置(-ignpar inpk)。
然后我运行我的netcore 3应用程序,但未检测到奇偶校验错误。
所以我跑
stty -D /dev/ttyS0 -a
用于验证设置,但这些设置似乎已重置(-ignpar-inpk)
如何强制我的应用程序在启用inpk属性的情况下运行?
有没有办法使inpack在默认情况下启用?
谢谢。
更新:netcore 3应用程序奇偶校验错误检测在windows 10中运行良好,但在linux下不工作。我的假设是:
A)netcore运行时未将奇偶校验设置传递给驱动程序
(不太可能)
B)操作系统忽略指令。
最佳答案
stty命令只是shell中使用termios API的一个方法。
应用程序应该使用termios API来配置串行终端,使其符合实际情况的要求(而不是依赖于启动时的预期配置)。
如果您正在使用的应用程序环境不允许访问termios API,则您可能使用了不适当的方法。
你知道有没有linux应用程序可以显式地对奇偶校验错误做出反应?
下面的C程序从串行终端读取行(即规范模式),并被配置为检测标记(或1)作为具有8位字符帧的奇偶校验位。
#define SERIALTERMINAL "/dev/ttyS0"
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
int set_interface_attribs(int fd, int speed)
{
struct termios tty;
if (tcgetattr(fd, &tty) < 0) {
printf("Error from tcgetattr: %s\n", strerror(errno));
return -1;
}
cfsetospeed(&tty, (speed_t)speed);
cfsetispeed(&tty, (speed_t)speed);
tty.c_cflag |= CLOCAL | CREAD;
tty.c_cflag &= ~CSIZE;
tty.c_cflag |= CS8; /* 8-bit characters */
tty.c_cflag |= PARENB; /* enable parity */
tty.c_cflag &= ~PARODD; /* Even parity */
tty.c_cflag |= CMSPAR; /* force Even parity to SPACE */
tty.c_cflag &= ~CSTOPB; /* only need 1 stop bit */
tty.c_cflag &= ~CRTSCTS; /* no hardware flowcontrol */
tty.c_lflag |= ICANON | ISIG; /* canonical input */
tty.c_lflag &= ~(ECHO | ECHOE | ECHONL | IEXTEN);
tty.c_iflag &= ~IGNCR; /* preserve carriage return */
tty.c_iflag &= ~(INLCR | ICRNL | IUCLC | IMAXBEL);
tty.c_iflag &= ~(IXON | IXOFF | IXANY); /* no SW flowcontrol */
tty.c_iflag |= IGNBRK; /* ignore breaks */
tty.c_iflag &= ~ISTRIP;
tty.c_iflag &= ~IGNPAR; /* report error */
tty.c_iflag |= INPCK; /* test parity */
tty.c_iflag |= PARMRK; /* verbose parity err */
tty.c_oflag &= ~OPOST;
tty.c_cc[VEOL] = 0;
tty.c_cc[VEOL2] = 0;
tty.c_cc[VEOF] = 0x04;
if (tcsetattr(fd, TCSANOW, &tty) != 0) {
printf("Error from tcsetattr: %s\n", strerror(errno));
return -1;
}
return 0;
}
int main(void)
{
char *portname = SERIALTERMINAL;
int fd;
int wlen;
fd = open(portname, O_RDWR | O_NOCTTY | O_SYNC);
if (fd < 0) {
printf("Error opening %s: %s\n", portname, strerror(errno));
return -1;
}
/*baudrate 115200, 8 bits, Space for parity, 1 stop bit */
set_interface_attribs(fd, B115200);
/* simple output */
wlen = write(fd, "Hello!\n", 7);
if (wlen != 7) {
printf("Error from write: %d, %d\n", wlen, errno);
}
tcdrain(fd); /* delay for output */
/* simple canonical input, read lines */
do {
unsigned char buf[81];
unsigned char *p;
int rdlen;
rdlen = read(fd, buf, sizeof(buf) - 1);
if (rdlen > 0) {
buf[rdlen] = 0;
printf("Read %d:", rdlen);
/* first display as hex numbers then ASCII */
for (p = buf; rdlen-- > 0; p++) {
printf(" 0x%x", *p);
if (*p < ' ')
*p = '.'; /* replace any control chars */
}
printf("\n \"%s\"\n\n", buf);
} else if (rdlen < 0) {
printf("Error from read: %d: %s\n", rdlen, strerror(errno));
} else { /* rdlen == 0 */
printf("Nothing read. EOF?\n");
}
/* repeat read */
} while (1);
}
这个程序是在一台旧的Linux(Ubuntu14.04.2LTS)PC上执行的,它有一个内置的16550A串行端口。
[ 2.656593] 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
这个串行端口似乎不能用奇偶校验(一个11位的帧)传输8位数据,但可以用奇偶校验读取8位数据。
串行数据由具有9位UART功能的SBC生成。使用示波器捕捉帧以确认8S1和8E1帧是11位长。
(FTDI USB到RS232转换器在生成具有8位字符的所有奇偶校验配置时不可靠。)
当发送器配置为8位和奇偶校验空间(与程序匹配)时,PC程序将“ABCDEFG\n”读取为:
Read 8: 0x41 0x42 0x43 0x44 0x45 0x46 0x47 0xa
"ABCDEFG."
数据读取正确。
当发送器配置为8位甚至奇偶校验时,PC程序将“ABCDEFG\n”读取为:
Read 14: 0x41 0x42 0xff 0x0 0x43 0x44 0xff 0x0 0x45 0xff 0x0 0x46 0x47 0xa
"AB�.CD�.E�.FG."
读取(正确)标识三个字符,这些字符的奇偶校验位是Mark而不是Space。
每个带有“奇偶校验错误”的字符前面都有
0xFF 0x00
字节(即总共三个字节)。注意,当实际接收的数据是
0xFF
时(没有奇偶校验错误),termios会将该数据扩展到0xFF 0xFF
的两个字节。因此请注意,当下一个数据0x00
时,这不是错误指示。low reading0xFF 0xFF 0x00
转换为实际数据。但是,当实际接收的数据是带有奇偶校验错误的
0xFF 0x00
时,则read返回0xFF
(即没有与错误指示相结合的扩展)。关于linux - 奇偶校验的stty串行端口设置不持久,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57193363/