Search found 290 matches

by ESP_morris
Thu Mar 17, 2022 3:20 am
Forum: ESP-IDF 中文讨论版
Topic: esp-idf编译报错
Replies: 2
Views: 3024

Re: esp-idf编译报错

'D:/esp/esp-idf-master/components/mbedtls/mbedtls/include' is not a directory.'

这个目录位于mbedtls的submodule中, 可能没有被checkout出来

git submodule update --init --recursive
by ESP_morris
Mon Mar 14, 2022 8:53 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32-S3-DevKitc-1 N32R8V开发板问题咨询
Replies: 1
Views: 1271

Re: ESP32-S3-DevKitc-1 N32R8V开发板问题咨询

你买的可能是 Octal Mode PSRAM, 请去官网下载对应模组的datasheet
by ESP_morris
Thu Mar 10, 2022 6:44 am
Forum: ESP-IDF
Topic: i80_controller example help
Replies: 2
Views: 2559

Re: i80_controller example help

The LVGL examples in esp-idf are all based on component manager, you can check the idf_component.yml file in the example project. See doc about component manager here https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-component-manager.html Yes, the PCLK is also referre...
by ESP_morris
Tue Mar 08, 2022 6:32 am
Forum: ESP-IDF 中文讨论版
Topic: PCNT中断注册失败
Replies: 8
Views: 4138

Re: PCNT中断注册失败

请问你用的是哪个版本的IDF? 还有,官方example运行起来有没有问题?
by ESP_morris
Tue Mar 08, 2022 3:32 am
Forum: ESP-IDF 中文讨论版
Topic: esp32s2关于同时使用wifi和lvgl出错重启是什么原因
Replies: 6
Views: 5465

Re: esp32s2关于同时使用wifi和lvgl出错重启是什么原因

试试把tick task放到 esp_timer 中,而不是放到 freertos tick hook中,可以参考这个example对lvgl的移植
https://github.com/espressif/esp-idf/bl ... ple_main.c
by ESP_morris
Tue Mar 08, 2022 3:15 am
Forum: ESP-IDF 中文讨论版
Topic: PCNT中断注册失败
Replies: 8
Views: 4138

Re: PCNT中断注册失败

你这代码也没有贴全啊,log显示你有调用 pcnt_isr_service_uninstall 但是你的代码中没有,检查一下你还有在哪些地方用到了PCNT. PCNT的中断只能全局注册一次.
by ESP_morris
Wed Mar 02, 2022 4:06 am
Forum: ESP-IDF 中文讨论版
Topic: 发现一个问题,关于i80 LCD驱动的一个死结,不知道算不算bug
Replies: 2
Views: 1802

Re: 发现一个问题,关于i80 LCD驱动的一个死结,不知道算不算bug

从报的错误来看像是在lvgl_example_main.c中申请内存发生了错误 heap_caps_malloc

B9命令为什么也要192字节?
by ESP_morris
Fri Feb 18, 2022 9:33 am
Forum: ESP-IDF 中文讨论版
Topic: PCNT中断注册失败
Replies: 8
Views: 4138

Re: PCNT中断注册失败

这是中断重复注册的错误
by ESP_morris
Fri Feb 18, 2022 9:28 am
Forum: ESP-IDF 中文讨论版
Topic: esp32 idf 内存段指定问题
Replies: 1
Views: 1274

Re: esp32 idf 内存段指定问题

因为“别的.c” 并没有函数被实际链接进去,在那里定义的console_cmd_lib section也不会被链进去
by ESP_morris
Tue Feb 15, 2022 8:18 am
Forum: ESP-IDF 中文讨论版
Topic: idf.py编译出现ninja错误
Replies: 4
Views: 3748

Re: idf.py编译出现ninja错误

似乎是这个文件找不到
/home/tommy/esp_s3/esp-idf/components/esp_wifi/lib/esp32s3/libcoexist.a

请确保所有的submodule都已经update了