rt-thread-official/examples/gui/gui_init.c

26 lines
497 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <rtgui/rtgui.h>
#include <rtgui/rtgui_server.h>
extern void rt_hw_lcd_init(void);
extern void rt_hw_key_init(void);
extern void workbench_init(void);
extern void panel_init(void);
/* GUI相关演示入口需放在线程中进行初始化 */
void rtgui_startup()
{
/* GUI系统初始化 */
rtgui_system_server_init();
/* 按键初始化 */
rt_hw_key_init();
/* LCD驱动初始化 */
rt_hw_lcd_init();
/* 各个面板初始化 */
panel_init();
/* 启动workbench */
workbench_init();
}