DMA on ESP-WROOM-32 #3656
Replies: 2 comments 4 replies
-
Currently for ESP32, DMA works only on -S3 (with a small modification to s3 processor source file) |
Beta Was this translation helpful? Give feedback.
-
I'm back on the topic to update the problem: The 1st use of the library I did it on a low-cost 1.3" display with ST7789 controller. (see image). By doing this it also works with the use of the DMA. All the other displays used in the tests (ST7789V and ILI9341) with CS signal have never presented any problem. Does anyone have other explanations? |
Beta Was this translation helpful? Give feedback.
-
Hello everyone.
I've been using this library for a few days and I wonder if anyone has managed to get DMA communication working with this library.
I'll start by saying that the examples without DMA works all , but none of the ones that require DMA works.
(eg SpriteRotatingCube.ino or BouncyCircles.ino).
I use the following configuration:
Library TFT-eSPI Ver. 2.5.43
Arduino IDE Ver. 2.3.4
ESP-WROOM-32
Display ST7789 SPI-Interface (without CS and only SDA for I/O).
Using VSPI as interface
#define TFT_MISO -1
#define TFT_MOSI 23
#define TFT_SCLK 18
#define TFT_CS -1 // Chip select control pin
#define TFT_DC 2 // Data Command control pin
#define TFT_RST 4 // Reset pin (could connect to RST pin).
Can anyone help me??
Beta Was this translation helpful? Give feedback.
All reactions