Wyatt  1.0.1
wiringSerial.cpp
1 //
2 // Created by Arthur Lockman on 4/9/17.
3 //
4 
5 #include "wiringSerial.h"
6 
7 int serialOpen(const char *device, const int baud)
8 {
9  return 0;
10 }
11 
12 void serialClose(const int fd)
13 {
14 
15 }
16 
17 void serialFlush(const int fd)
18 {
19 
20 }
21 
22 void serialPutchar(const int fd, const unsigned char c)
23 {
24 
25 }
26 
27 void serialPuts(const int fd, const char *s)
28 {
29 
30 }
31 
32 void serialPrintf(const int fd, const char *message, ...)
33 {
34 
35 }
36 
37 int serialDataAvail(const int fd)
38 {
39  return 0;
40 }
41 
42 int serialGetchar(const int fd)
43 {
44  return 0;
45 }