source: ntrip/trunk/BNC/src/test_serial.cpp@ 9958

Last change on this file since 9958 was 9958, checked in by stuerze, 15 months ago

minor changes

File size: 433 bytes
Line 
1
2#ifndef WIN32
3#include <unistd.h>
4#else
5#include <windows.h>
6#endif
7#include <stdio.h>
8#include <stdlib.h>
9
10int main(int argc, char* argv[]) {
11
12 FILE* fp = fopen("/dev/ttyS0", "r");
13
14 if (!fp) {
15 printf("Cannot open file.\n");
16 exit(9);
17 }
18
19 char msg[100];
20
21 while (true) {
22 int nb = fread(msg, sizeof(msg), 1, fp);
23 printf("read %d\n", nb);
24#ifndef WIN32
25 sleep(1);
26#else
27 Sleep(1000);
28#endif
29 }
30
31 return 0;
32}
Note: See TracBrowser for help on using the repository browser.