-
LovyanGFX version 1.1.16, file Bus_RGB.cpp.
Visual Studio issues an error on line 159 and 307
My question is how or where is An help or insight apricated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, It's from an esp-idf component brought in by the The error can be solved by using the latest version of espressif32 platform which comes with a more recent version of esp-idf. If you're already using the latest official espressif platform and you know it won't solve the error, you can try using this non official platformio core instead. |
Beta Was this translation helpful? Give feedback.
ToBozo, thank you
I traced down my problem. You provided the clue with
#include "soc/lcd_periph.h"
For some reason, the esp-idf component version 3.1.0-RC2 changed the
name from
lcd_periph_signals
tolcd_preiph_rgb_signals
makingLovyanGFX version 1.1.16 throw the errors since it requires
lcd_periph_signals
for Bus_RGB.cpp.
Changing the ESP version 3.1.0-RC2 to ESP version 3.1.0-RC1
solved the issue.
My thanks again.