Skip to content

Commit

Permalink
lv_conf: Merge in changes / defaults from lvgl update.
Browse files Browse the repository at this point in the history
  • Loading branch information
pi-anl committed Jan 31, 2025
1 parent 6c5a0f5 commit 8852c27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lv_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ extern void mp_lv_deinit_gc();
#define LV_FONT_MONTSERRAT_42 0
#define LV_FONT_MONTSERRAT_44 0
#define LV_FONT_MONTSERRAT_46 0
#define LV_FONT_MONTSERRAT_48 0
#define LV_FONT_MONTSERRAT_48 1

/*Demonstrate special features*/
#define LV_FONT_MONTSERRAT_28_COMPRESSED 0 /*bpp = 3*/
Expand Down Expand Up @@ -667,15 +667,15 @@ extern void mp_lv_deinit_gc();
/*File system interfaces for common APIs */

/*API for fopen, fread, etc*/
#define LV_USE_FS_STDIO 1
#define LV_USE_FS_STDIO 0
#if LV_USE_FS_STDIO
#define LV_FS_STDIO_LETTER 'A' /*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

/*API for open, read, etc*/
#define LV_USE_FS_POSIX 1
#define LV_USE_FS_POSIX 0
#if LV_USE_FS_POSIX
#define LV_FS_POSIX_LETTER 'P' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#define LV_FS_POSIX_PATH "" /*Set the working directory. File/directory paths will be appended to it.*/
Expand All @@ -698,7 +698,7 @@ extern void mp_lv_deinit_gc();
#endif

/*API for memory-mapped file access. */
#define LV_USE_FS_MEMFS 0
#define LV_USE_FS_MEMFS 1
#if LV_USE_FS_MEMFS
#define LV_FS_MEMFS_LETTER 'M' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
#endif
Expand Down

0 comments on commit 8852c27

Please sign in to comment.