see what we're missing

This commit is contained in:
anecdata 2020-12-30 09:45:15 -06:00
parent 0914b71653
commit d537d94a4c
1 changed files with 4 additions and 1 deletions

View File

@ -78,12 +78,15 @@ static void event_handler(void* arg, esp_event_base_t event_base,
radio->last_disconnect_reason = reason; radio->last_disconnect_reason = reason;
xEventGroupSetBits(radio->event_group_handle, WIFI_DISCONNECTED_BIT); xEventGroupSetBits(radio->event_group_handle, WIFI_DISCONNECTED_BIT);
break;
} }
// Cases to handle later. // Cases to handle later.
// case WIFI_EVENT_STA_AUTHMODE_CHANGE: // case WIFI_EVENT_STA_AUTHMODE_CHANGE:
default: default: {
ESP_EARLY_LOGW(TAG, "event %d 0x%02x", event_id, event_id);
break; break;
}
} }
} }