##// END OF EJS Templates
Works on linux, need to be ported to Windows
Works on linux, need to be ported to Windows

File last commit:

r0:1e2e24b083a8 default
r0:1e2e24b083a8 default
Show More
RS232.h
11 lines | 264 B | text/x-c | CLexer
Works on linux, need to be ported to Windows
r0 // SOPSUYSI_RS232.h
#define ReadBufferSize 16*1024
int rs232open(char* psPortName);
int rs232close(int fd);
int rs232setup(int fd, int ChSize, int BaudeRate, int Parity, int NbStop);
int rs232write(int fd,char *psWrite);
int rs232read(int fd,char *psReadHex);