mirror of https://github.com/arendst/Tasmota.git
parent
d6a15aa5dc
commit
f2c61c4496
|
@ -600,8 +600,10 @@ uDisplay::uDisplay(char *lp) : Renderer(800, 600) {
|
||||||
lvgl_param.flushlines = next_val(&lp1);
|
lvgl_param.flushlines = next_val(&lp1);
|
||||||
lvgl_param.data = next_val(&lp1);
|
lvgl_param.data = next_val(&lp1);
|
||||||
// temporary fix to disable DMA due to a problem in esp-idf 5.3
|
// temporary fix to disable DMA due to a problem in esp-idf 5.3
|
||||||
|
#ifdef ESP32
|
||||||
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
|
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
|
||||||
lvgl_param.use_dma = false;
|
lvgl_param.use_dma = false;
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
case 'M':
|
case 'M':
|
||||||
|
|
Loading…
Reference in New Issue