Browse Source

remove key and lcd init from rtgui_startup()

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1599 bbd45198-f89e-11dd-88c7-29a3b14d5316
wuyangyong 14 years ago
parent
commit
4bac05ffad
1 changed files with 0 additions and 7 deletions
  1. 0 7
      examples/gui/gui_init.c

+ 0 - 7
examples/gui/gui_init.c

@@ -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();