changes for target esp32, such as ESP32-WROOM-32

This commit is contained in:
Victor Talpaert
2026-04-04 17:58:29 +02:00
parent c4bda245f9
commit 9b38e6de11
4 changed files with 26 additions and 18 deletions

View File

@@ -217,7 +217,7 @@ static void wifi_init_softap(void) {
ESP_LOGI(TAG, "SoftAP Started. SSID: %s", AP_SSID);
// Start DNS Server Task
xTaskCreate(dns_server_task, "dns_task", 2048, NULL, 5, NULL);
xTaskCreate(dns_server_task, "dns_task", 4096, NULL, 5, NULL);
}
static void wifi_init_station(const char* ssid, const char* pass) {