source:
ntrip/trunk/BNC/src/test_serial.cpp@
10792
| Last change on this file since 10792 was 9958, checked in by , 3 years ago | |
|---|---|
| File size: 433 bytes | |
| Rev | Line | |
|---|---|---|
| [1608] | 1 | |
| [9952] | 2 | #ifndef WIN32 |
| [1608] | 3 | #include <unistd.h> |
| [9954] | 4 | #else |
| [9958] | 5 | #include <windows.h> |
| [9952] | 6 | #endif |
| [1608] | 7 | #include <stdio.h> |
| 8 | #include <stdlib.h> | |
| 9 | ||
| 10 | int main(int argc, char* argv[]) { | |
| 11 | ||
| [1633] | 12 | FILE* fp = fopen("/dev/ttyS0", "r"); |
| [1608] | 13 | |
| 14 | if (!fp) { | |
| 15 | printf("Cannot open file.\n"); | |
| [9854] | 16 | exit(9); |
| [1608] | 17 | } |
| 18 | ||
| [1633] | 19 | char msg[100]; |
| [1608] | 20 | |
| 21 | while (true) { | |
| [1633] | 22 | int nb = fread(msg, sizeof(msg), 1, fp); |
| 23 | printf("read %d\n", nb); | |
| [9958] | 24 | #ifndef WIN32 |
| 25 | sleep(1); | |
| 26 | #else | |
| 27 | Sleep(1000); | |
| 28 | #endif | |
| [1608] | 29 | } |
| 30 | ||
| 31 | return 0; | |
| 32 | } |
Note:
See TracBrowser
for help on using the repository browser.
