串行通信Arduino-Raspberry与C和sysfs库中的错误数据

时间:2015-02-15 19:02:42

标签: c linux arduino raspberry-pi sysfs

我正在尝试让Arduino和Raspberry交流。我在Raspberry上有一个使用sysfs库和C-Arduino程序的C程序。

我的所作所为:Arduino已经有自己的编译(在相同的Raspberry上)程序,而不是我在raspberry上编译程序,我开始了。

问题:我从Raspberry获取数据时延迟了一个Raspberry输入,如下面的代码所示。

Type: a
OFFXX
Type: s
ONFXX
Type: a
OFFXX
Type: s
ONFXX
Type: s
OFFXX
Type: a
OFFXX

我第一次得到OFFXX

arduino代码:

int led = 13;
void setup() {                
  pinMode(led, OUTPUT);
  Serial.begin(57600);  
}
void loop() {
   if (Serial.available() > 0) {
      char comando = toLowerCase(Serial.read());
        if (comando == 'a') { 
           digitalWrite(led, HIGH);
           Serial.print("ON");        
        }
        else {
           digitalWrite(led, LOW);
           Serial.print("OFF");
        }        
   } 
} 

和覆盆子代码:

#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main(){

int fd = open("/dev/ttyS0", O_RDWR);
if (fd == -1) {
  perror("/dev/ttyS0");
  return 1;
}

char msg[] = "a";
char rx[] = "XXXXX";

struct termios tios;
tcgetattr(fd, &tios);
// disable flow control and all that, and ignore break and parity errors
tios.c_iflag = IGNBRK | IGNPAR;
tios.c_oflag = 0;
tios.c_lflag = 0;
cfsetspeed(&tios, B57600);
tcsetattr(fd, TCSAFLUSH, &tios);

// the serial port has a brief glitch once we turn it on which generates a
// start bit; sleep for 1ms to let it settle
usleep(1000);

// output to serial port
while(1){
    printf("Type: ");
    scanf("%s", msg);
    write(fd, msg, strlen(msg));

    read(fd, rx, strlen(rx));
    printf("%s\n", rx);
}
}

USB电缆和GPIO都有这个问题

编辑:另一个问题:为什么OUTPUT会记住之前初始化的最后一个字符?

1 个答案:

答案 0 :(得分:0)

在RAW模式下打开Raspberry端的串口。使用以下代码以RAW模式打开端口:

int fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY | O_NDELAY);

if(fd == -1)
{
        return -1;
}
else
{

        struct termios new_termios;
        struct termios orig_termios;

        tcgetattr(fd, &orig_termios);
        memcpy(&new_termios, &orig_termios, sizeof(new_termios));

        cfmakeraw(&new_termios);

        cfsetispeed(&new_termios, B57600);
        cfsetospeed(&new_termios, B57600);

        tcsetattr(fd, TCSANOW, &new_termios);

}

希望在你的情况下这样做会很完美。