Skip to content

Commit 0f70817

Browse files
committed
esp32s2: wifi: fix several debug-build errors
Closes #3688 With this change, I don't get the ESP_ERROR_CHECK failed repeatedly running code that imports wifi. (I'm not getting a successful connection but that's probably my own fault, such as a secrets problem)
1 parent 8d3a878 commit 0f70817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/esp32s2/common-hal/wifi/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ void wifi_reset(void) {
143143
radio->handler_instance_got_ip));
144144
ESP_ERROR_CHECK(esp_wifi_deinit());
145145
esp_netif_destroy(radio->netif);
146+
ESP_ERROR_CHECK(esp_event_loop_delete_default());
146147
radio->netif = NULL;
147-
ESP_ERROR_CHECK(esp_netif_deinit());
148148
}
149149

150150
void ipaddress_ipaddress_to_esp_idf(mp_obj_t ip_address, ip_addr_t* esp_ip_address) {

0 commit comments

Comments
 (0)