added debug statements, dynamic allocation is working for tasks
[mTask.git] / client / interface.h
index 042cc20..9e16292 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef INTERFACE_H
 #define INTERFACE_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <stdbool.h>
 #include <stdint.h>
 #include <stdarg.h>
@@ -22,7 +26,7 @@ extern char **gargv;
 #define HAVEAIO 1
 #define HAVEDIO 1
 
-#elif defined NODEMCU
+#elif defined ARDUINO_ESP8266_NODEMCU
 #define MAXTASKS 5
 #define MAXSDSS 100
 #define HAVELED 0
@@ -59,13 +63,16 @@ void led_off(uint8_t i);
 #endif
 
 /* Delay and communication */
-long millis(void);
-void delay(long ms);
+unsigned long getmillis(void);
+void msdelay(unsigned long ms);
 
 /* Auxilliary */
-void setup(void);
+void real_setup(void);
 void debug(char *fmt, ...);
 void pdie(char *s);
 void die(char *fmt, ...);
 
+#ifdef __cplusplus
+}
+#endif
 #endif