Xinyuan-LilyGO / T-Deck

191 stars 43 forks source link

UnitTest Example not Compiling #2

Closed tomvdb closed 1 year ago

tomvdb commented 1 year ago

Hi There,

All examples seems to compiling and working fine, except for the UnitTest example. It seems to be looking for lv_conf.h

All libraries are correctly installed. Maybe a file is missing ?

`In file included from c:\users\admin\documents\arduino\libraries\lvgl\src/misc/lv_log.h:16, from c:\users\admin\documents\arduino\libraries\lvgl\lvgl.h:25, from C:\Users\admin\Documents\Arduino\libraries\lvgl\src/lvgl.h:17, from C:\temp\T-Deck-master\examples\UnitTest\UnitTest.ino:13: c:\users\admin\documents\arduino\libraries\lvgl\src\lv_conf_internal.h:41:18: fatal error: ../../lv_conf.h: No such file or directory

include "../../lv_conf.h" /Else assume lv_conf.h is next to the lvgl folder/

              ^~~~~~~~~~~~~~~~~

compilation terminated. exit status 1 Error compiling for board ESP32S3 Dev Module. `

lewisxhe commented 1 year ago

Move lvgl/lv_conf.h into the libraries directory. image

tomvdb commented 1 year ago

Thank you :)