named sds's
[mTask.git] / client / interface.h
index 266c13d..24e5c37 100644 (file)
@@ -10,6 +10,8 @@ extern "C" {
 #include <stdarg.h>
 
 #ifdef LINUX
+#define NAPINS 128
+#define NDPINS 128
 #define STACKSIZE 1024
 #define MEMSIZE 1024
 #define HAVELED 1
@@ -20,6 +22,8 @@ extern int gargc;
 extern char **gargv;
 
 #elif defined STM
+#define NAPINS 128
+#define NDPINS 128
 #define STACKSIZE 1024
 #define MEMSIZE 1024
 #define HAVELED 1
@@ -27,6 +31,8 @@ extern char **gargv;
 #define HAVEDIO 1
 
 #elif defined ARDUINO_ESP8266_NODEMCU
+#define NAPINS 128
+#define NDPINS 128
 #define STACKSIZE 1024
 #define MEMSIZE 1024
 #define HAVELED 0
@@ -34,6 +40,8 @@ extern char **gargv;
 #define HAVEDIO 0
 
 #elif defined ARDUINO_AVR_UNO
+#define NAPINS 128
+#define NDPINS 128
 #define STACKSIZE 64
 #define MEMSIZE 256
 #define HAVELED 0
@@ -77,6 +85,7 @@ void real_setup(void);
 void debug(char *fmt, ...);
 void pdie(char *s);
 void die(char *fmt, ...);
+void reset(void);
 
 #ifdef __cplusplus
 }