updated wifi module for static behaviour

This commit is contained in:
Matthias Mitscherlich
2023-01-16 12:19:33 +01:00
parent d2167ecde3
commit f2967862b6
2 changed files with 14 additions and 11 deletions
+6 -2
View File
@@ -70,10 +70,14 @@ class Wifi
void start_client(void);
static void event_handler(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data);
private:
static EventGroupHandle_t s_wifi_event_group;
static int s_retry_num;
static const char *TAG;
static void event_handler(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data);
};