esp-now remote: fix crash with AP = Always

initialize ESPNOW only when Wifi (STA or AP) is running
This commit is contained in:
Frank 2023-08-01 11:53:32 +02:00 committed by GitHub
parent 1ed817932b
commit 5fe09e9787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ typedef struct message_structure {
} message_structure; } message_structure;
static int esp_now_state = ESP_NOW_STATE_UNINIT; static int esp_now_state = ESP_NOW_STATE_UNINIT;
static uint32_t last_seq = -1; static uint32_t last_seq = UINT32_MAX;
static int brightnessBeforeNightMode = NIGHT_MODE_DEACTIVATED; static int brightnessBeforeNightMode = NIGHT_MODE_DEACTIVATED;
static message_structure incoming; static message_structure incoming;
@ -168,7 +168,7 @@ void OnDataRecv(const uint8_t * mac, const uint8_t *incomingData, int len) {
void handleRemote() { void handleRemote() {
if (enable_espnow_remote) { if (enable_espnow_remote) {
if (esp_now_state == ESP_NOW_STATE_UNINIT) { if ((esp_now_state == ESP_NOW_STATE_UNINIT) && (interfacesInited || apActive)) { // ESPNOW requires Wifi to be initialized (either STA, or AP Mode)
DEBUG_PRINTLN(F("Initializing ESP_NOW listener")); DEBUG_PRINTLN(F("Initializing ESP_NOW listener"));
// Init ESP-NOW // Init ESP-NOW
if (esp_now_init() != 0) { if (esp_now_init() != 0) {
@ -197,4 +197,4 @@ void handleRemote() {
} }
} }
#endif #endif