diff --git a/bsp/stm32_radio/application.c b/bsp/stm32_radio/application.c index 2e32bd362a..09620a8fe0 100644 --- a/bsp/stm32_radio/application.c +++ b/bsp/stm32_radio/application.c @@ -32,6 +32,8 @@ #include /* dfs filesystem:EFS filesystem init */ #include +/* dfs filesystem:ELM FatFs filesystem init */ +#include /* dfs Filesystem APIs */ #include #endif diff --git a/bsp/stm32_radio/info.c b/bsp/stm32_radio/info.c index 8185f98705..de5ad25fa4 100644 --- a/bsp/stm32_radio/info.c +++ b/bsp/stm32_radio/info.c @@ -66,6 +66,7 @@ static void info_entry(void* parameter) if (workbench == RT_NULL) return; view = rtgui_view_create("view"); + RTGUI_WIDGET_BACKGROUND(RTGUI_WIDGET(view)) = white; rtgui_widget_set_event_handler(RTGUI_WIDGET(view), view_event_handler); rtgui_workbench_add_view(workbench, view); diff --git a/bsp/stm32_radio/rtconfig.h b/bsp/stm32_radio/rtconfig.h index d34079b6cc..20860de648 100644 --- a/bsp/stm32_radio/rtconfig.h +++ b/bsp/stm32_radio/rtconfig.h @@ -174,5 +174,7 @@ #define RTGUI_USING_SMALL_SIZE /* use mouse cursor */ /* #define RTGUI_USING_MOUSE_CURSOR */ +/* default font size in RTGUI */ +#define RTGUI_DEFAULT_FONT_SIZE 16 #endif