summaryrefslogtreecommitdiff
path: root/lib/lvgl
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-11-14 13:20:04 +1100
committerjacqueline <me@jacqueline.id.au>2023-11-14 13:20:04 +1100
commit71ed09a6f70901c9097973a44b24d6a6ced2834f (patch)
tree3d02e4e180cd0a5caa1185eba89181607c4bccb9 /lib/lvgl
parent8a0a167adbf3d9b6f8b6f16aaf20ca39ad5549de (diff)
downloadtangara-fw-71ed09a6f70901c9097973a44b24d6a6ced2834f.tar.gz
Add two-way databinding for lua, and flesh out the lua statusbar
Diffstat (limited to 'lib/lvgl')
-rw-r--r--lib/lvgl/lv_conf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lvgl/lv_conf.h b/lib/lvgl/lv_conf.h
index 06f19f40..07bfc9ad 100644
--- a/lib/lvgl/lv_conf.h
+++ b/lib/lvgl/lv_conf.h
@@ -597,9 +597,9 @@
/*File system interfaces for common APIs */
/*API for fopen, fread, etc*/
-#define LV_USE_FS_STDIO 0
+#define LV_USE_FS_STDIO 1
#if LV_USE_FS_STDIO
- #define LV_FS_STDIO_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
+ #define LV_FS_STDIO_LETTER '/' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#define LV_FS_STDIO_PATH "" /*Set the working directory. File/directory paths will be appended to it.*/
#define LV_FS_STDIO_CACHE_SIZE 0 /*>0 to cache this number of bytes in lv_fs_read()*/
#endif
@@ -628,7 +628,7 @@
#endif
/*PNG decoder library*/
-#define LV_USE_PNG 0
+#define LV_USE_PNG 1
/*BMP decoder library*/
#define LV_USE_BMP 0