mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
293 B
15 lines
293 B
#include <esp8266.h>
|
|
#include "config.h"
|
|
#include "syslog.h"
|
|
|
|
#define APPINIT_DBG
|
|
#ifdef APPINIT_DBG
|
|
#define DBG(format, ...) os_printf(format, ## __VA_ARGS__)
|
|
#else
|
|
#define DBG(format, ...) do { } while(0)
|
|
#endif
|
|
|
|
// initialize the custom stuff that goes beyond esp-link
|
|
void app_init() {
|
|
|
|
}
|
|
|