16 lines
183 B
C
16 lines
183 B
C
/*
|
|
* serial.h
|
|
* --------
|
|
*
|
|
*/
|
|
|
|
int prepare_UART(char *port, int bauds);
|
|
|
|
int getbyte(int fd);
|
|
|
|
|
|
/* timeout is exprimed in milliseconds. */
|
|
int getbyte_to (int fd, int to_ms);
|
|
|
|
|