Add two-way databinding for lua, and flesh out the lua statusbar

This commit is contained in:
jacqueline
2023-11-14 13:20:04 +11:00
parent 8a0a167adb
commit 71ed09a6f7
26 changed files with 485 additions and 41 deletions
+3 -3
View File
@@ -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