0

シリアルポートデバイスを開いて構成する次のコードを書きました

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 

私の質問(おそらく簡単です)は、これら2つの機能で正確に何を変更する必要があるかです

FILE *fd;
fd=fopen("/dev/ttyUSB0","r");

fd= open(...) などの代わりに?

4

1 に答える 1