Search found 18 matches
- Wed May 08, 2024 7:04 am
- Forum: ESP-ADF
- Topic: How to migrate IDF project to ADF project (or: how to incorporate ADF into an IDF project)?
- Replies: 6
- Views: 27309
Re: How to migrate IDF project to ADF project (or: how to incorporate ADF into an IDF project)?
Seems I should change esp idf path win , in vscode UI setting(command plate) , to C:\Users\hyuan\esp\esp-adf\esp-idf which will guide building system to use IDF within ADF.
- Wed May 08, 2024 6:31 am
- Forum: ESP-ADF
- Topic: How to migrate IDF project to ADF project (or: how to incorporate ADF into an IDF project)?
- Replies: 6
- Views: 27309
Re: How to migrate IDF project to ADF project (or: how to incorporate ADF into an IDF project)?
I am developing application with ESP32, I am also new to ESP. So, following official guide, using Visual Code installed IDF firstly and developed several applications wit IDF to practice toolchain. Now I need to add audio features(speech recognition) to application , so installed ADF(v2.6) manually ...
- Wed May 08, 2024 3:45 am
- Forum: ESP-ADF 中文讨论版
- Topic: ESP32-LyraTD-MSC不能跑 ESP-ADF wwe 参考应用吗?一直死机。
- Replies: 2
- Views: 7109
ESP32-LyraTD-MSC不能跑 ESP-ADF wwe 参考应用吗?一直死机。
## Environment Audio development kit: ESP32-LyraTD-MSC Audio kit version: v2.2 [Required] Module or chip used: ESP32-WROVER-E [Required] IDF version: v5.2.1 [Required] ADF version: v2.6-108-g1f275b50 Build system: visual code/idf.py [Required] Running log: All logs from power-on to problem recurren...
- Wed May 08, 2024 3:14 am
- Forum: ESP-ADF
- Topic: ESP32-LyraTD-MSC board can't run ESP-ADF wwe example.
- Replies: 1
- Views: 4559
ESP32-LyraTD-MSC board can't run ESP-ADF wwe example.
## Environment Audio development kit: ESP32-LyraTD-MSC Audio kit version: v2.2 [Required] Module or chip used: ESP32-WROVER-E [Required] IDF version: v5.2.1 [Required] ADF version: v2.6-108-g1f275b50 Build system: visual code/idf.py [Required] Running log: All logs from power-on to problem recurren...
- Sun May 05, 2024 2:34 pm
- Forum: ESP-ADF 中文讨论版
- Topic: 从gitee真的能clone成功ADF吗?
- Replies: 1
- Views: 6780
从gitee真的能clone成功ADF吗?
按照官方说明拉esp-adf: https://docs.espressif.com/projects/esp-adf/en/latest/get-started/index.html#update-esp-adf Windows¶ Download the full ESP-ADF repository from GitHub by running: git clone --recursive https://github.com/espressif/esp-adf.git For users located in China, it is faster to download from G...
- Sun May 05, 2024 2:30 pm
- Forum: ESP Cloud 中文讨论版
- Topic: gitee真的能clone成功ADF吗?
- Replies: 0
- Views: 9616
gitee真的能clone成功ADF吗?
按照官方说明拉esp-adf: https://docs.espressif.com/projects/esp-adf/en/latest/get-started/index.html#update-esp-adf Windows¶ Download the full ESP-ADF repository from GitHub by running: git clone --recursive https://github.com/espressif/esp-adf.git For users located in China, it is faster to download from G...
- Sun May 05, 2024 1:18 am
- Forum: ESP-ADF 中文讨论版
- Topic: VSCODE安装ESP-ADF插件失败
- Replies: 4
- Views: 15063
Re: VSCODE安装ESP-ADF插件失败
我也遇到这个问题了,vscode安装esp-idf后用idf extension 安装adf(选择国内gitee源)最后总会报失败。请问报失败后手工如上改一下idf extension: Esp adf path win 到安装adf时选择的安装路径(C:\Users\dino\.espressif\esp-adf)即可是吗?然后不用理会报失败的信息?谢谢!
vscode安装esp-adf失败截屏错误:
vscode安装esp-adf失败截屏错误:
- Tue Apr 30, 2024 6:39 am
- Forum: Hardware
- Topic: How to enable JTAG for ESP32-LyraTD-MSC Devkit?
- Replies: 0
- Views: 1160
How to enable JTAG for ESP32-LyraTD-MSC Devkit?
Hello I am developing application with ESP32-LyraTD-MSC, just want to know: 1) ESP32-LyraTD-MSC dev kit includes module of ESP32-WROVER-E, if ESP32-LyraTD-MSC has integrated JTAG adapter or not? Or I need to buy additional JTAG-USB adapter? 2) if JTAG function is enabled by default? Or I have to set...
- Tue Apr 30, 2024 4:06 am
- Forum: ESP-IDF
- Topic: stack/heap memory corruption?
- Replies: 3
- Views: 1933
Re: stack/heap memory corruption?
The more interesting is , when I change the code in talk_to_server, from char array definition in function (which will allocate memory from task stack): void talk_to_server(void) { char local_response_buffer[MAX_HTTP_OUTPUT_BUFFER+1] = {0}; ... } to char * , which will allocate memory from heap : vo...
- Tue Apr 30, 2024 2:27 am
- Forum: ESP-IDF
- Topic: stack/heap memory corruption?
- Replies: 3
- Views: 1933
Re: stack/heap memory corruption?
Thank you @ESP_Sprite for reply, it really shocked me that other components will consumed too many stack memory - until I doubled the task stack size( from 8K to 16K), the program can run smoothly!