gpt4 book ai didi

使用 RS232 的 C 程序仅在启动 minicom 时有效

转载 作者:行者123 更新时间:2023-12-03 09:53:16 25 4
gpt4 key购买 nike

我正在使用 RS232 通信程序。该程序到目前为止运行良好,但我需要在启动程序之前启动和退出 minicom(并最终关闭硬件流控制)。

下面是我用来初始化端口的代码。我已经看过了 http://www.cmrr.umn.edu/~strupp/serial.html并尝试了不同的进一步标志/选项,例如明确设置硬件流控制关闭,但它没有帮助。

int open_port(void)
{
int fd;
#ifdef DEBUG
printf("open port\n");
#endif
fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY | O_NDELAY);
if (fd == -1)
{
perror("open_port: Unable to open /dev/ttyS0");
}
else
{
if (port_set==0){
port_set=1;
struct termios options;
tcgetattr(fd, &options);
cfsetispeed(&options, B9600);
cfsetospeed(&options, B9600);
options.c_cflag |= (CLOCAL | CREAD);
tcsetattr(fd, TCSANOW, &options);
}
}
return (fd);
}

最佳答案

对于非规范模式,您需要使用宏cfmakeraw 来简化所需的各种设置。否则,程序将执行阻塞读取,直到检测到终止字符(如 0x0A)为止,该字符可能永远不会发送。插入这一行

cfmakeraw(&options);// make raw

在行之后

tcgetattr(fd, &options);

关于使用 RS232 的 C 程序仅在启动 minicom 时有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24518563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com