Search found 3 matches

by curtainzero
Thu Oct 14, 2021 1:36 pm
Forum: ESP-IDF 中文讨论版
Topic: esp32s3支持rgb(ltds)接口的屏幕了吗?
Replies: 4
Views: 8327

esp32s3支持rgb(ltds)接口的屏幕了吗?

在datasheet里有看到支持rgb接口的lcd,什么时候能有实例呢?
by curtainzero
Sat Oct 09, 2021 7:09 am
Forum: General Discussion
Topic: ESP32-S3 (Beta2) MARLIN_9_1B on ESP32-S3-Addax-1 V1.0 Specs & Datasheet
Replies: 74
Views: 179431

Re: ESP32-S3 (Beta2) MARLIN_9_1B on ESP32-S3-Addax-1 V1.0 Specs & Datasheet

Cool

I'm curious about the support for the rgb interface screen mentioned in the esp32s3 datasheet. Is there any test for that?
by curtainzero
Sat Aug 21, 2021 7:57 pm
Forum: ESP-IDF 中文讨论版
Topic: 关于esp32中spi传输方式与dma的疑问
Replies: 0
Views: 3335

关于esp32中spi传输方式与dma的疑问

在写spi屏幕驱动(ili9431)中,我没有理清idf开发文档中的spi传输方式queue和polling的区别。spi_device_queue_trans这个函数返回仅表示加入队列成功吗?获取是否传输成功需要用spi_device_get_trans_result?当使用spi_device_get_trans_result和spi_device_polling_transmit函数时,都要等待传输完成在或取返回值吗?两者又有什么区别? 在spi相关函数中,我只看到了dma通道选项,如何启用dma呢?是自动启用的吗? 当我向屏幕驱动内存进行传输写入的时候,需要发送大量的uint32数据,...