读取串口数据

时间:2013-12-04 19:08:00

标签: c file-io serial-port arduino arduino-ide

我正在尝试在Mac OS上读取C中的串行端口数据。串行端口的配置在单独的Arduino IDE中完成。

我能够读取部分数据,但随后打印的数据会重复并开始读取零,如下所示。如果我删除O_NONBLOCK,程序就会挂起。我该怎么做才能解决这个问题?其次,鉴于我正在读取for循环中的数据,我如何确保读取速率与波特率相对应?

所见数据: 296 310 0

320 295 311

320 295 311

9 296 311

320 295 311

320 295 311

9 296 311

...

0 0 0

0 0 0

0 0 0 等

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>

int buffer[300];

int main(int argc, const char* argv[])
{

    // open serial port
    int port;
    port = open("/dev/tty.usbmodem1411", O_RDONLY | O_NONBLOCK);
    if (port == -1)
    {
        printf("Unable to open serial port.\n");
        return 1;
    }

    // instantiate file
    FILE* file = fdopen(port, "r");
    if (file == NULL)
    {
        printf("Unable to instantiate file.\n");
        close(port);
        return 2;
    }

    for (int j = 0; j < 200; j++)
    {

        fscanf(file, "%d %d %d", &buffer[3*i], &buffer[3*i+1], &buffer[3*i+2]);
        printf("%d %d %d\n", buffer[3*i], buffer[3*i+1], buffer[3*i+2]);

        i = (i + 1) % 100;

        usleep(10000);

    }

    fclose(file);
    close(port);

    return 0;

}

1 个答案:

答案 0 :(得分:0)

对于Chris Stratton:

if (fgets(temp, sizeof(temp), file) != NULL) 
{ 
     sscanf(temp, "%d %d %d\n", &buffer[3*i], &buffer[3*i+1], &buffer[3*i+2]); 
     printf("%d %d %d\n", buffer[3*i], buffer[3*i+1], buffer[3*i+2]); 
}

然而,回到我原来的问题,即使我使用fscanf和printf,我获取数据,然后我只能无限期地读取零。我想这可能更像是一个串口通信问题?