Had to make many changes to get it to compile across many files, including removing the LOCAL specifier from almost all functions. Edited the Makefile to compile all three files and link them. Haven't tested on hardware yet, that's the next step. Lots of small changes to avoid warnings, now that I have turned -Wall on. This makes the code a bit "better". Signed-off-by: A.M. Rowsell <amrowsell@frozenelectronics.ca>
9 lines
288 B
C
9 lines
288 B
C
#include "os_type.h"
|
|
|
|
LOCAL void ICACHE_FLASH_ATTR con(void *arg);
|
|
LOCAL void ICACHE_FLASH_ATTR pub(void *arg);
|
|
LOCAL void ICACHE_FLASH_ATTR sub(void *arg);
|
|
LOCAL void ICACHE_FLASH_ATTR ping(void *arg);
|
|
LOCAL void ICACHE_FLASH_ATTR discon(void *arg);
|
|
|
|
void ICACHE_FLASH_ATTR user_init();
|