remove key and lcd init from rtgui_startup()
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1599 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
8dd602108a
commit
4bac05ffad
|
@ -2,8 +2,6 @@
|
|||
#include <rtgui/rtgui_server.h>
|
||||
#include <rtgui/rtgui_system.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);
|
||||
|
||||
|
@ -13,11 +11,6 @@ void rtgui_startup()
|
|||
/* GUI系统初始化 */
|
||||
rtgui_system_server_init();
|
||||
|
||||
/* 按键初始化 */
|
||||
rt_hw_key_init();
|
||||
/* LCD驱动初始化 */
|
||||
rt_hw_lcd_init();
|
||||
|
||||
/* 各个面板初始化 */
|
||||
panel_init();
|
||||
|
||||
|
|
Loading…
Reference in New Issue