1

我从串行设备读取缓冲区。它返回我这些结果(每次 2 行)

Hello World.
My name is John.

Hello World.^M^JMy name 
is Mike.

Hello World.^M^JMy name 
is ^M^JERROR Peter.

这些结果在 Linux 命令行中。^M^J 是 EOL,在 Windows 中表示 \r\n。第一个结果还可以,但其他两个很糟糕。有没有办法检查 ^M^J 字符并删除它们?因为我想要这些结果:

Hello World.
My name is John.

Hello World.
My name is Mike.

Hello World.
My name is Peter.

使用此代码,我读取了缓冲区

char buff[150];
memset(buff, 0, sizeof(buff));
for (;;)
{
  n=read(fd,buff,sizeof(buff));
  printf("%s", buff);
}

更新

我以这种方式打开和配置我的设备

int open_port(void)
{
int fd; // file description for the serial port 
fd = open("/dev/ttyAMA0", O_RDWR | O_NOCTTY | O_NDELAY);
if(fd == -1) // if open is unsucessful
{
 //perror("open_port: Unable to open /dev/ttyAMA0 - ");
 printf("open_port: Unable to open /dev/ttyAMA0. \n");
}
else
{
  fcntl(fd, F_SETFL, 0);
  printf("port is open.\n");
}

return(fd);
} //open_port

并配置端口

int configure_port(int fd)      // configure the port
{
 struct termios port_settings;      // structure to store the port settings in
 cfsetispeed(&port_settings, B9600);    // set baud rates
 cfsetospeed(&port_settings, B9600);
 port_settings.c_cflag &= ~PARENB;    // set no parity, stop bits, data bits
 port_settings.c_cflag &= ~CSTOPB;
 port_settings.c_cflag &= ~CSIZE;
 port_settings.c_cflag |= CS8;
 tcsetattr(fd, TCSANOW, &port_settings);    // apply the settings to the port
 return(fd);

} //configure_port
4

4 回答 4

0

printf()它看到 a\r\n而不是 alon时,它的行为方式很有趣\n。它将成对的字符行尾解释为不是行尾,因此它没有执行通常的行尾功能,而是向您显示^M^J. 简单地消除\r意志会给你想要的行为。

  char buff[150];
  int n = read(fd,buff,sizeof(buff));  // buff is not NUL terminated
  if (n < 0) {
    // deal with I/O error
    }
  if (n == 0) {
    // deal with end-of-file
    }
  else {
    for (int i=0; i<n; i++) {
      if (isprint(buff[i]) || (buff[i] == '\n')) {
        putchar(buff[i]);
      }
      else if (buff[i] == '\r') {
        ; // drop it
      }
      else {
        ; // TBD deal with unexpected control codes and codes 127-255
      }
    }
  }

注意:
1)您buff之前从串行设备使用read(). 由于串行设备是二进制的,读取的字节可能包括 NUL 字节。在缓冲区中读取偶尔散布 NUL 字节的字节数组并将其视为 NUL 终止的字符串将导致丢失数据。
2) Aread()不会将\0字节附加到它读取的缓冲区的末尾,并且可能会解释您的“错误”。
3) 通常,您正在读取二进制设备并写入文本输出。传入的二进制流可能是\r\n用作行尾的 ASCII 文本,但您stdout\n用作行尾。只要字节是可打印的 ASCII(代码 32-126),打印到stdout. 但是当你读到\0, \r, \n,paired \r\n,其他控制字符,通信错误等,您需要考虑您希望如何显示。

于 2013-06-07T12:29:53.367 回答
0

您可以查看这个问题,它提出了一个从文件中读取行并处理 Windows 回车的函数。

于 2013-06-07T11:54:33.103 回答
0

打开文件O_TEXT

#include <fcntl.h>
fd = open("/dev/ttyAMA0", O_RDWR | O_NOCTTY | O_NDELAY | O_TEXT);
于 2013-06-07T13:31:56.677 回答
0

首先,^M^J是行尾,而不是文件尾。

其次,read从指定的文件描述符中读取二进制数据。它会读取您指定的字符数,直到到达文件末尾,或者出现错误。如果您想一次读取行,一次读取一个字节,或者使用其他一些面向行的 I/O 调用(sscanf 之类的)

于 2013-06-07T10:44:00.000 回答