Reorganize repository structure

This commit is contained in:
Telekatz 2017-07-05 22:48:01 +02:00
parent f2259c5424
commit 6202a9f8ef
364 changed files with 0 additions and 42706 deletions

15
lpctool/lpctool_serial.h Normal file
View file

@ -0,0 +1,15 @@
#ifndef LPCTOOL_SERIAL_H
#define LPCTOOL_SERIAL_H
#define TOOLBAUD 115200
int openSerial(char *dev);
int closeSerial(void);
int reconfSerial(unsigned int baud, unsigned char flow, unsigned char tout);
int sendBuf(unsigned int len, char *buf);
int getBuf(unsigned int len, char *buf);
void setDTR(unsigned char val);
void setRTS(unsigned char val);
#endif