Search found 17 matches
- Sat Jun 07, 2025 4:07 am
- Forum: ESP-IDF
- Topic: sdkconfig.default overwritten?
- Replies: 2
- Views: 183
Re: sdkconfig.default overwritten?
Sorry a typo, my definitions are in sdkconfig.defaults file. I will correct the original post
- Fri Jun 06, 2025 10:34 pm
- Forum: ESP-IDF
- Topic: sdkconfig.default overwritten?
- Replies: 2
- Views: 183
sdkconfig.default overwritten?
I am using the latest ESP-IDF sdk on the master branch, and used it to create a simple project for the ESP32C5 chip. In the project I created the sdkconfig.defaults file to keep some of the settings.
after idf.py build command, I found that the sdkconfig.defaults file was overwritten, the ...
after idf.py build command, I found that the sdkconfig.defaults file was overwritten, the ...
- Fri Jun 06, 2025 10:25 pm
- Forum: ESP-IDF
- Topic: Detailed Documentation of "WIFI_BAND_MODE_AUTO"
- Replies: 3
- Views: 342
Detailed Documentation of "WIFI_BAND_MODE_AUTO"
for the dual band ESP32C5, what is the result of calling the API esp_wifi_set_band_mode(WIFI_BAND_MODE_AUTO)?
Can I create two APs or two STAs, one with 2.4GHz, and the other on 5GHz, or in case of APSTA mode, AP on 5GHz, and STA on 2.4GHz, or vice versa? I couldn't find any documentation on this.
Can I create two APs or two STAs, one with 2.4GHz, and the other on 5GHz, or in case of APSTA mode, AP on 5GHz, and STA on 2.4GHz, or vice versa? I couldn't find any documentation on this.
- Mon Jun 02, 2025 5:19 pm
- Forum: IDEs for ESP-IDF
- Topic: ESP32-C5 is not in the launch target list in Espressif-IDE
- Replies: 5
- Views: 3040
Re: ESP32-C5 is not in the launch target list in Espressif-IDE
thank you kondalkolipaka, I followed your instructions and successfully compiled the hello world example code for the esp32c5 target.
and I will try flashing and debugging later on.
your help is appreciated.
and I will try flashing and debugging later on.
your help is appreciated.
- Fri May 30, 2025 5:42 pm
- Forum: IDEs for ESP-IDF
- Topic: ESP32-C5 is not in the launch target list in Espressif-IDE
- Replies: 5
- Views: 3040
Re: ESP32-C5 is not in the launch target list in Espressif-IDE
Do you have examples of how to edit the CMakeLists.txt ?
I assume ESP32-C5 is similar to ESp32-C6 so most of the contents can be just copied from ESp32-C6 files
I assume ESP32-C5 is similar to ESp32-C6 so most of the contents can be just copied from ESp32-C6 files
- Fri May 30, 2025 2:11 am
- Forum: IDEs for ESP-IDF
- Topic: ESP32-C5 is not in the launch target list in Espressif-IDE
- Replies: 5
- Views: 3040
ESP32-C5 is not in the launch target list in Espressif-IDE
So I have installed the latest Espressif-IDE (Version: 3.4.0 Build id: 20250506-1512)
and the latest toolchain from the ESP-IDF master branch (ESP-IDF v5.5-dev-3951-ga74725a31b).
In the ESP-IDF command line, I was able to set esp32c5 as target with --preview as argument, and build it successfully ...
and the latest toolchain from the ESP-IDF master branch (ESP-IDF v5.5-dev-3951-ga74725a31b).
In the ESP-IDF command line, I was able to set esp32c5 as target with --preview as argument, and build it successfully ...
- Fri Jun 24, 2022 12:51 am
- Forum: General Discussion
- Topic: Question: Will the newly announced ESP32-C5 chip support FTM?
- Replies: 0
- Views: 1771
Question: Will the newly announced ESP32-C5 chip support FTM?
The announcement did not mention it,
Does anyone know?
Does anyone know?
- Tue Nov 09, 2021 4:52 am
- Forum: ESP-IDF
- Topic: FTM ASAP mode
- Replies: 0
- Views: 1610
FTM ASAP mode
As far as I know, ESP32C3 and S2,S3 now support google's FTM ASAP mode (and I tested it with a pixel phone ).
my question is, is it possible to initiate a FTM ASAP request from within a ESP chip? and how to initiate that request from the ESP chip?
Thanks
my question is, is it possible to initiate a FTM ASAP request from within a ESP chip? and how to initiate that request from the ESP chip?
Thanks
- Mon Nov 08, 2021 3:02 pm
- Forum: ESP-IDF
- Topic: FTM responder long term stability
- Replies: 4
- Views: 6078
Re: FTM responder long term stability
Does anyone have the same issue? and how should I resolve this issue?
Hi @Weigen Qiu, I suggest opening an issue on ESP-IDF GitHub and linking to https://github.com/espressif/esp-idf/issues/7702 that looks like a similar issue but for ESP32-S2.
Thanks ESP_krzychb, for pointing to the ...
- Mon Nov 08, 2021 5:52 am
- Forum: ESP-IDF
- Topic: FTM responder long term stability
- Replies: 4
- Views: 6078
Re: FTM responder long term stability
I don;t see anything obvious wrong in your code, but if you suspect a memory leak, a way to confirm it is to periodically print the return value of xPortGetFreeHeapSize()... if that consistently goes down, you may indeed have a leak on your hands.
I am not concerned with a memory leak on the ...