Search found 290 matches

by ESP_morris
Fri Oct 14, 2022 10:16 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32-C2芯片怎么配置?
Replies: 2
Views: 1617

Re: ESP32-C2芯片怎么配置?

C2 是在IDF 5.0开始的支持的, 请看这个表格:https://github.com/espressif/esp-idf#es ... patibility
by ESP_morris
Tue Oct 11, 2022 2:37 am
Forum: ESP-IDF 中文讨论版
Topic: esp-idf lvgl
Replies: 5
Views: 3053

Re: esp-idf lvgl

idf驱动中不是已经支持了st7789的驱动了吗,还有lvgl的example,所以为什么还要自己移植呢?
by ESP_morris
Tue Oct 11, 2022 2:33 am
Forum: ESP-IDF 中文讨论版
Topic: IDF4.4 对ESP32S3的支持
Replies: 1
Views: 886

Re: IDF4.4 对ESP32S3的支持

使用 SPI_DMA_CH_AUTO 可以自动分配DMA通道

example中的GPIO管脚的配置需要根据你自己的板子连接情况做修改的

据我所知,4.4 分支上对SPI驱动的支持挺完善的
by ESP_morris
Tue Aug 23, 2022 8:01 am
Forum: ESP-IDF 中文讨论版
Topic: 量产产品贴MAC ID标签的事儿
Replies: 5
Views: 2637

Re: 量产产品贴MAC ID标签的事儿

上位机用esptool读取MAC地址
by ESP_morris
Tue Aug 02, 2022 3:42 am
Forum: ESP-IDF
Topic: Why is ESP32-S3 LCD Module limited to 16 Bit?
Replies: 4
Views: 2921

Re: Why is ESP32-S3 LCD Module limited to 16 Bit?

FWIW, ESP32-S3 also supports Serial RGB interface, where you only need 8 data GPIOs to transfer RGB888 data.
by ESP_morris
Wed Jul 13, 2022 3:59 am
Forum: ESP-IDF 中文讨论版
Topic: [分享] 查看 esp32 的串口下载过程(使用esptool)
Replies: 2
Views: 19541

Re: [分享] 查看 esp32 的串口下载过程(使用esptool)

通常,我们会通过 python 脚本,从 PC 端,通过串口给 esp32 芯片或者模块下载固件程序。 通过 esptool (https://github.com/espressif/esptool) 脚本,我们可以很方便的实现。 但有时,我们也希望能通过其他单片机的串口,给 esp32/esp8266 进行固件更新。(前提是外部单片机能够控制esp32 进入串口下载模式)。 完整的串口通信协议可以参考这里 (https://github.com/espressif/esptool/wiki/Serial-Protocol) 为了方便调试,我们可以通过运行 esptool,来查看上位机与e...
by ESP_morris
Mon Jul 11, 2022 5:13 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32S3[已解决]
Replies: 2
Views: 1520

Re: ESP32S3

这里的所有example在s3上都能运行(需要根据你的板子自行修改GPIO号)
https://github.com/espressif/esp-idf/tr ... herals/lcd

驱动在这里: https://github.com/espressif/esp-idf/tr ... ts/esp_lcd
by ESP_morris
Mon Jun 20, 2022 4:34 am
Forum: ESP-IDF 中文讨论版
Topic: MCPWM
Replies: 15
Views: 6804

Re: MCPWM

i have saw that the mcpwm module can't perceive the DFS. i need to call the function of esp_pm_lock_acquire(ESP_PM_APB_FREQ_MAX) when i use the mcpwm module, and need to call the function of esp_pm_lock_release(ESP_PM_APB_FREQ_MAX) when i stop the pwm. is it right? yes, the application can create a...
by ESP_morris
Fri Jun 17, 2022 3:47 am
Forum: ESP-IDF 中文讨论版
Topic: MCPWM
Replies: 15
Views: 6804

Re: MCPWM

Nice catch! You got the point. In fact the MCPWM's clock source is from an internal PLL, which is 160MHz by default. But when you enabled the Power Management , the clock frequency will be reduced to save the power if the following conditions are met: 1. CPU goes into IDLE task 2. There's no power m...
by ESP_morris
Wed Jun 15, 2022 6:17 am
Forum: ESP-IDF 中文讨论版
Topic: [已解决] ESP-IDF 是否支持 LCD 和 Camera 共用?
Replies: 2
Views: 1741

Re: ESP-IDF 是否支持 LCD 和 Camera 共用?

由于历史原因,camera驱动位于另外一个独立的仓库中,具体用法请参考那里的文档:https://github.com/espressif/esp32-camera