シリアル デバイスからバッファを読み取りました。これらの結果が返されます(毎回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 を意味します。最初の結果は問題ありませんが、他の 2 つはひどい結果です。^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