Wyatt  1.0.1
wiringSerial.h
1 //
2 // Created by Arthur Lockman on 4/9/17.
3 //
4 
5 #ifndef WYATT_WIRINGSERIAL_H
6 #define WYATT_WIRINGSERIAL_H
7 
8 int serialOpen (const char *device, const int baud) ;
9 void serialClose (const int fd) ;
10 void serialFlush (const int fd) ;
11 void serialPutchar (const int fd, const unsigned char c) ;
12 void serialPuts (const int fd, const char *s) ;
13 void serialPrintf (const int fd, const char *message, ...) ;
14 int serialDataAvail (const int fd) ;
15 int serialGetchar (const int fd) ;
16 
17 #endif //WYATT_WIRINGSERIAL_H