Skip to content

Commit

Permalink
Merge pull request #3689 from jepler/issue-3688
Browse files Browse the repository at this point in the history
esp32s2: wifi: fix several debug-build errors
  • Loading branch information
tannewt authored Nov 17, 2020
2 parents a185549 + 0f70817 commit e2b5ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/esp32s2/common-hal/wifi/__init__.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ void wifi_reset(void) {
radio->handler_instance_got_ip));
ESP_ERROR_CHECK(esp_wifi_deinit());
esp_netif_destroy(radio->netif);
ESP_ERROR_CHECK(esp_event_loop_delete_default());
radio->netif = NULL;
ESP_ERROR_CHECK(esp_netif_deinit());
}

void ipaddress_ipaddress_to_esp_idf(mp_obj_t ip_address, ip_addr_t* esp_ip_address) {
Expand Down

0 comments on commit e2b5ae2

Please sign in to comment.