DD2-monitor/serial/serial.h

22 lines
351 B
C
Raw Normal View History

/*
* serial.h
2018-12-12 20:07:49 +01:00
* --------
*
*/
int prepare_UART(char *port, int bauds);
2018-12-20 11:57:23 +01:00
int getbyte(int fd); /* really brotched func */
2018-12-12 16:06:18 +01:00
2018-12-12 20:07:49 +01:00
/* timeout is exprimed in milliseconds. */
int getbyte_to (int fd, int to_ms);
2018-12-14 18:52:06 +01:00
int getline_to(int fd, char *where, int szm, int to_ms);
/* auxiliary and test functions */
int parseXvalue(char *asciidatas, char id);
2018-12-12 20:07:49 +01:00