esp32 wroom custom board & wifi
Posted: Fri Jun 06, 2025 11:49 am
Hi to all, I made my own board with the esp32 wroom 32E and I'm able to flash it and debug it with the esp-prog board without problems. But an strange problem is happening. I'm using the WiFi connection and when I tried to set the configs the program go to panic. This line:
this is the output I got:
I already test and use this code with the esp32wroom dev board and works like a charm. But I don't understand why in this custom board I got problems with the WiFi settings. a couple of questions:
1) Do I need to enable something on menuconfig?
2) Could this be a hardware problem? But why am I able to program and debug the board?
P.S: I also test this code in a different custom board and still get this problem. Only work in the development board.
Thanks
Gastón
Code: Select all
ESP_ERROR_CHECK(esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_configuration));
I already test and use this code with the esp32wroom dev board and works like a charm. But I don't understand why in this custom board I got problems with the WiFi settings. a couple of questions:
1) Do I need to enable something on menuconfig?
2) Could this be a hardware problem? But why am I able to program and debug the board?
P.S: I also test this code in a different custom board and still get this problem. Only work in the development board.
Thanks
Gastón