Windows 11 vscode环境,安装esp32_s3_lcd_ev_board组件编译异常。
esp-idf版本是5.4.0,Choose ESP-IDF Board选择了ESP32-S3 chip(via builtin USB-JTAG),工程用的是esp-idf的hello_world。
编译hello_world是没问题,我去components manager安装esp32_s3_lcd_ev_board时,点击安装没有成功的反应。然后sdk配置编辑器也打开失败。log里面写:CMake Error at D:/Users/Kyle/esp/v5.4/esp-idf ...
Search found 33 matches
- Wed Apr 23, 2025 4:26 am
- Forum: ESP-IDF 中文讨论版
- Topic: esp32_s3_lcd_ev_board组件使用问题
- Replies: 0
- Views: 218
- Thu May 23, 2019 2:20 am
- Forum: ESP-IDF 中文讨论版
- Topic: [已解决] NVS分区生成器用于量产UID应该怎么使用好
- Replies: 2
- Views: 6192
Re: NVS分区生成器用于量产UID应该怎么使用好
Thank you very much for your reply.Perhaps you can generate multiple NVS binaries using the mass manufacturing utility? https://docs.espressif.com/projects/esp ... s_mfg.html
- Wed May 22, 2019 9:16 am
- Forum: ESP-IDF 中文讨论版
- Topic: [已解决] NVS分区生成器用于量产UID应该怎么使用好
- Replies: 2
- Views: 6192
[已解决] NVS分区生成器用于量产UID应该怎么使用好
https://docs.espressif.com/projects/esp ... n_gen.html
如题,我把UID写入.csv文件,再生成.bin文件。但是我每次还是得改.csv文件,然后再生成.bin文件,自我感觉不方便,请教下有什么工具或者有什么思路和方法吗?
如题,我把UID写入.csv文件,再生成.bin文件。但是我每次还是得改.csv文件,然后再生成.bin文件,自我感觉不方便,请教下有什么工具或者有什么思路和方法吗?
- Sun May 05, 2019 7:51 am
- Forum: ESP-IDF 中文讨论版
- Topic: 使用NVS Partition Generator Utility nvs读取不到key值
- Replies: 1
- Views: 5181
Re: 使用NVS Partition Generator Utility nvs读取不到key值
问题找到了,把read的函数换成nvs_get_u8就好了
日志打印
Code: Select all
I (262) SPP_ACCEPTOR_DEMO: required_size:1
I (272) SPP_ACCEPTOR_DEMO: [ test data ]:1
I (272) SPP_ACCEPTOR_DEMO: [ test data ]:1
- Fri Apr 19, 2019 7:32 am
- Forum: ESP-IDF 中文讨论版
- Topic: 使用NVS Partition Generator Utility nvs读取不到key值
- Replies: 1
- Views: 5181
使用NVS Partition Generator Utility nvs读取不到key值
https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/storage/nvs_partition_gen.html
我这边是按照上面的流程进行操作
要生成的test.csv
key,type,encoding,value
namespace_name,namespace,,
key1,data,u8,1
转.bin指令
python ~/esp/esp-idf/components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py --input ...
我这边是按照上面的流程进行操作
要生成的test.csv
key,type,encoding,value
namespace_name,namespace,,
key1,data,u8,1
转.bin指令
python ~/esp/esp-idf/components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py --input ...
- Mon Mar 25, 2019 6:38 am
- Forum: ESP-ADF 中文讨论版
- Topic: eclipse编译成功但c文件部分头文件关联不到
- Replies: 1
- Views: 7521
Re: eclipse编译成功但c文件部分头文件关联不到
我也遇到过这种情况,也没找到解决方法。编译没问题还好,编译出错,这种情况就影响判断了。
- Wed Mar 20, 2019 2:45 am
- Forum: ESP-ADF 中文讨论版
- Topic: 建立双管道时候,按键外设的问题
- Replies: 1
- Views: 7399
Re: 建立双管道时候,按键外设的问题
我根据了“flexible_pipeline”例程的逻辑重新改了代码,如下。
发现几个问题
1、audio_pipeline_pause得换成audio_pipeline_stop+audio_pipeline_wait_for_stop才可用
2、得重新注册i2s_stream_writer——audio_pipeline_register(pipeline, i2s_stream_writer, "i2sw");
但是audio_pipeline_stop注释不是说了“The link state of the elements in the pipeline is kept”吗 ...
发现几个问题
1、audio_pipeline_pause得换成audio_pipeline_stop+audio_pipeline_wait_for_stop才可用
2、得重新注册i2s_stream_writer——audio_pipeline_register(pipeline, i2s_stream_writer, "i2sw");
但是audio_pipeline_stop注释不是说了“The link state of the elements in the pipeline is kept”吗 ...
- Fri Mar 15, 2019 8:11 am
- Forum: ESP-ADF 中文讨论版
- Topic: 蓝牙管道切换的流程问题
- Replies: 0
- Views: 6460
蓝牙管道切换的流程问题
我根据了“flexible_pipeline”例程的逻辑重新改了代码,如下。
发现几个问题
1、audio_pipeline_pause得换成audio_pipeline_stop+audio_pipeline_wait_for_stop才可用
2、得重新注册i2s_stream_writer——audio_pipeline_register(pipeline, i2s_stream_writer, "i2sw");
但是audio_pipeline_stop注释不是说了“The link state of the elements in the pipeline is kept”吗 ...
发现几个问题
1、audio_pipeline_pause得换成audio_pipeline_stop+audio_pipeline_wait_for_stop才可用
2、得重新注册i2s_stream_writer——audio_pipeline_register(pipeline, i2s_stream_writer, "i2sw");
但是audio_pipeline_stop注释不是说了“The link state of the elements in the pipeline is kept”吗 ...
- Fri Mar 15, 2019 7:00 am
- Forum: ESP-ADF 中文讨论版
- Topic: esp32连接成功的wifi的用户名和密码,怎么记忆到芯片中,开机自动重连
- Replies: 1
- Views: 8996
Re: esp32连接成功的wifi的用户名和密码,怎么记忆到芯片中,开机自动重连
esp-idf中有相关的存储例程,你把相关信息写到nvs flash上,开机读取,然后进行操作应该就可以了。
- Wed Mar 13, 2019 7:56 am
- Forum: ESP-ADF 中文讨论版
- Topic: 建立双管道时候,按键外设的问题
- Replies: 1
- Views: 7399
建立双管道时候,按键外设的问题
我这边做了一个简单的双管道demo,想通过按键的事件进行切换。管道1是连接bt播放音乐,管道2是连接AUX_IN播放音乐,硬件为ESP32_LyraT v4.3。但是使用管道2时却触发不到按键的事件,是想请问下我代码的哪个步骤出了问题。
/* Play music from Bluetooth device
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this ...
/* Play music from Bluetooth device
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this ...