From 6953914ff57a070fe1284d74a87973acec56b533 Mon Sep 17 00:00:00 2001 From: Rbb666 Date: Thu, 13 Jan 2022 09:38:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E8=8C=83=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bsp/raspberry-pico/applications/SConscript | 2 +- bsp/raspberry-pico/applications/lvgl/SConscript | 5 +++-- bsp/raspberry-pico/applications/lvgl/lv_port_disp.c | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bsp/raspberry-pico/applications/SConscript b/bsp/raspberry-pico/applications/SConscript index d0723dfea1..a0508c4020 100644 --- a/bsp/raspberry-pico/applications/SConscript +++ b/bsp/raspberry-pico/applications/SConscript @@ -14,4 +14,4 @@ for item in list: if os.path.isfile(os.path.join(cwd, item, 'SConscript')): group = group + SConscript(os.path.join(item, 'SConscript')) -Return('group') \ No newline at end of file +Return('group') diff --git a/bsp/raspberry-pico/applications/lvgl/SConscript b/bsp/raspberry-pico/applications/lvgl/SConscript index 0292c8d9d0..bbeed6d911 100644 --- a/bsp/raspberry-pico/applications/lvgl/SConscript +++ b/bsp/raspberry-pico/applications/lvgl/SConscript @@ -6,11 +6,12 @@ group = [] src = Glob('*.c') CPPPATH = [cwd] +group = DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH) + list = os.listdir(cwd) for d in list: path = os.path.join(cwd, d) if os.path.isfile(os.path.join(path, 'SConscript')): group = group + SConscript(os.path.join(d, 'SConscript')) - -group += DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH) + Return('group') diff --git a/bsp/raspberry-pico/applications/lvgl/lv_port_disp.c b/bsp/raspberry-pico/applications/lvgl/lv_port_disp.c index 48a922cc9e..636ff7a008 100644 --- a/bsp/raspberry-pico/applications/lvgl/lv_port_disp.c +++ b/bsp/raspberry-pico/applications/lvgl/lv_port_disp.c @@ -36,7 +36,7 @@ void lv_port_disp_init(void) LCD_Init(HORIZONTAL); /*Initialize `disp_buf` with the buffer(s).*/ - lv_disp_draw_buf_init(&disp_buf, lv_disp_buf1, 0x00, DISP_BUF_SIZE); + lv_disp_draw_buf_init(&disp_buf, lv_disp_buf1, RT_NULL, DISP_BUF_SIZE); lv_disp_drv_init(&disp_drv); /*Basic initialization*/