/** * Globals */ #ifndef _APPLICATION_H #define _APPLICATION_H #include #include #include "sdkconfig.h" #include "settings.h" #include "gitversion.h" #define EG_WIFI_CONNECTED_BIT BIT0 extern EventGroupHandle_t g_wifi_event_group; #define WIFI_CONNECTED_BIT BIT0 #define WIFI_FAIL_BIT BIT1 esp_err_t cspemu_add_shutdown_handler(shutdown_handler_t handler); void cspemu_run_shutdown_handlers(void); #define APP_NAME "APP" #define APP_VERSION "v1" #endif //_APPLICATION_H