读取 /dev/ttyUSB0 失败?

读取 /dev/ttyUSB0 失败?

我有一个连接到 /dev/ttyUSB0 的 GPS 设备,我编写了一个简单的代码来从中读取数据,但读取总是失败,我不知道问题出在哪里,这是我的代码,你能帮帮我吗:)。

#include<iostream>
#include<fstream>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>

using namespace std;
int read_port(void) 
{
int fd;
fd = open("dev/ttyUSB0" , O_RDWR | O_NOCTTY | O_NDELAY);
if (fd ==-1) 
{
    perror("open_port: Unable to open /dev/ttyUSB0 - ");

}

   char buffer[32];
    int n = read(fd, buffer, sizeof(buffer));
    if (n < 0)
        fputs("read failed!\n", stderr);
    return (fd);
}

int main()
{
     read_port();
}

答案1

/我假设是因为您在前面漏掉了一个dev

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

如果我是你我会为此创建一个变量

/dev/ttyUSB0 

这样,open和就error可以显示相同的文件名。避免混淆。

相关内容