Started with nodeMCU support
[mTask.git] / client / interface_nodemcu.c
1 #include <stdbool.h>
2 #include <stdint.h>
3
4 bool input_available(void)
5 {
6 return false;
7 }
8
9 uint8_t read_byte(void)
10 {
11 return 0;
12 }
13
14 void write_byte(uint8_t b)
15 {
16 (void)b;
17 }
18
19 long millis(void)
20 {
21 return 0;
22 }
23
24 void delay(long ms)
25 {
26 (void) ms;
27 }
28
29 void setup(void)
30 {
31
32 }
33
34 void debug(char *fmt, ...)
35 {
36 (void)fmt;
37 }
38
39 void pdie(char *s)
40 {
41 (void)s;
42 }
43
44 void die(char *fmt, ...)
45 {
46 (void)fmt;
47 }