Temporarily disable SPI DMA for uDisplay (broken since esp-idf 5.3) (#22264)

This commit is contained in:
s-hadinger 2024-10-10 23:20:07 +02:00 committed by GitHub
parent cc6ec3648f
commit d6a15aa5dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,7 @@ All notable changes to this project will be documented in this file.
- ESP32 Dali compile error with core 3.x (#22214)
- Dali received data decoding
- ESP32 Ethernet using EthClockMode 3 (#22248)
- Temporarily disable SPI DMA for uDisplay (broken since esp-idf 5.3)
### Removed
- Berry Zigbee removed test code

View File

@ -599,6 +599,10 @@ uDisplay::uDisplay(char *lp) : Renderer(800, 600) {
case 'B':
lvgl_param.flushlines = next_val(&lp1);
lvgl_param.data = next_val(&lp1);
// temporary fix to disable DMA due to a problem in esp-idf 5.3
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
lvgl_param.use_dma = false;
#endif
break;
case 'M':
rotmap_xmin = next_val(&lp1);