mirror of https://github.com/arendst/Tasmota.git
Temporarily disable SPI DMA for uDisplay (broken since esp-idf 5.3) (#22264)
This commit is contained in:
parent
cc6ec3648f
commit
d6a15aa5dc
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue