From d85f6324a7e204d47ed4dce7161d50b3993f1281 Mon Sep 17 00:00:00 2001 From: "Man, Jianting (Meco)" <920369182@qq.com> Date: Fri, 17 Dec 2021 20:52:46 -0500 Subject: [PATCH] chore replace LittlevGL references with LVGL (#2913) --- scripts/Doxyfile | 2 +- scripts/built_in_font/built_in_font_gen.py | 2 +- src/extra/libs/fsdrv/lv_fs_fatfs.c | 2 +- src/extra/libs/fsdrv/lv_fs_posix.c | 2 +- src/extra/libs/fsdrv/lv_fs_stdio.c | 2 +- src/extra/libs/fsdrv/lv_fs_win32.c | 2 +- src/extra/libs/png/lv_png.c | 2 +- src/extra/libs/png/lv_png.h | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/Doxyfile b/scripts/Doxyfile index ce88aac43..38c6597c6 100644 --- a/scripts/Doxyfile +++ b/scripts/Doxyfile @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "LittlevGL" +PROJECT_NAME = "LVGL" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version diff --git a/scripts/built_in_font/built_in_font_gen.py b/scripts/built_in_font/built_in_font_gen.py index 058147a4b..afc6f19b6 100755 --- a/scripts/built_in_font/built_in_font_gen.py +++ b/scripts/built_in_font/built_in_font_gen.py @@ -5,7 +5,7 @@ from argparse import RawTextHelpFormatter import os import sys -parser = argparse.ArgumentParser(description="""Create fonts for LittelvGL including the built-in symbols. lv_font_conv needs to be installed. See https://github.com/littlevgl/lv_font_conv +parser = argparse.ArgumentParser(description="""Create fonts for LVGL including the built-in symbols. lv_font_conv needs to be installed. See https://github.com/lvgl/lv_font_conv Example: python built_in_font_gen.py --size 16 -o lv_font_roboto_16.c --bpp 4 -r 0x20-0x7F""", formatter_class=RawTextHelpFormatter) parser.add_argument('-s', '--size', type=int, diff --git a/src/extra/libs/fsdrv/lv_fs_fatfs.c b/src/extra/libs/fsdrv/lv_fs_fatfs.c index d45f9f006..0e79df45b 100644 --- a/src/extra/libs/fsdrv/lv_fs_fatfs.c +++ b/src/extra/libs/fsdrv/lv_fs_fatfs.c @@ -54,7 +54,7 @@ void lv_fs_fatfs_init(void) fs_init(); /*--------------------------------------------------- - * Register the file system interface in LittlevGL + * Register the file system interface in LVGL *--------------------------------------------------*/ /*Add a simple drive to open images*/ diff --git a/src/extra/libs/fsdrv/lv_fs_posix.c b/src/extra/libs/fsdrv/lv_fs_posix.c index 919ad41ba..3c21a2ee1 100644 --- a/src/extra/libs/fsdrv/lv_fs_posix.c +++ b/src/extra/libs/fsdrv/lv_fs_posix.c @@ -58,7 +58,7 @@ static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p); void lv_fs_posix_init(void) { /*--------------------------------------------------- - * Register the file system interface in LittlevGL + * Register the file system interface in LVGL *--------------------------------------------------*/ /*Add a simple drive to open images*/ diff --git a/src/extra/libs/fsdrv/lv_fs_stdio.c b/src/extra/libs/fsdrv/lv_fs_stdio.c index e6fd8e0cc..1fcf491f0 100644 --- a/src/extra/libs/fsdrv/lv_fs_stdio.c +++ b/src/extra/libs/fsdrv/lv_fs_stdio.c @@ -57,7 +57,7 @@ static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p); void lv_fs_stdio_init(void) { /*--------------------------------------------------- - * Register the file system interface in LittlevGL + * Register the file system interface in LVGL *--------------------------------------------------*/ /*Add a simple drive to open images*/ diff --git a/src/extra/libs/fsdrv/lv_fs_win32.c b/src/extra/libs/fsdrv/lv_fs_win32.c index 4100c5268..b63dd585a 100644 --- a/src/extra/libs/fsdrv/lv_fs_win32.c +++ b/src/extra/libs/fsdrv/lv_fs_win32.c @@ -54,7 +54,7 @@ static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * dir_p); void lv_fs_win32_init(void) { /*--------------------------------------------------- - * Register the file system interface in LittlevGL + * Register the file system interface in LVGL *--------------------------------------------------*/ /*Add a simple drive to open images*/ diff --git a/src/extra/libs/png/lv_png.c b/src/extra/libs/png/lv_png.c index 1207895e5..d33d276b9 100644 --- a/src/extra/libs/png/lv_png.c +++ b/src/extra/libs/png/lv_png.c @@ -42,7 +42,7 @@ static void convert_color_depth(uint8_t * img, uint32_t px_cnt); **********************/ /** - * Register the PNG decoder functions in LittlevGL + * Register the PNG decoder functions in LVGL */ void lv_png_init(void) { diff --git a/src/extra/libs/png/lv_png.h b/src/extra/libs/png/lv_png.h index 1e9b02d65..438047238 100644 --- a/src/extra/libs/png/lv_png.h +++ b/src/extra/libs/png/lv_png.h @@ -29,7 +29,7 @@ extern "C" { **********************/ /** - * Register the PNG decoder functions in LittlevGL + * Register the PNG decoder functions in LVGL */ void lv_png_init(void);