2011-03-24 22:00:19 +08:00
|
|
|
|
#include <rtgui/rtgui.h>
|
|
|
|
|
#include <rtgui/rtgui_system.h>
|
|
|
|
|
#include <rtgui/rtgui_server.h>
|
|
|
|
|
#include "touch.h"
|
|
|
|
|
|
|
|
|
|
void rt_hw_lcd_init(void);
|
2011-04-16 18:20:24 +08:00
|
|
|
|
void rt_hw_key_init(void);
|
2011-03-24 22:00:19 +08:00
|
|
|
|
void rtgui_panel_init(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* GUI<55><49><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD>ڣ<EFBFBD><DAA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD><DFB3>н<EFBFBD><D0BD>г<EFBFBD>ʼ<EFBFBD><CABC> */
|
|
|
|
|
void rtgui_startup()
|
|
|
|
|
{
|
|
|
|
|
/* GUIϵͳ<CFB5><CDB3>ʼ<EFBFBD><CABC> */
|
|
|
|
|
rtgui_system_server_init();
|
|
|
|
|
|
|
|
|
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC> */
|
2011-04-16 18:20:24 +08:00
|
|
|
|
rt_hw_key_init();
|
2011-03-24 22:00:19 +08:00
|
|
|
|
/* LCD<43><44><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC> */
|
|
|
|
|
rt_hw_lcd_init();
|
|
|
|
|
rtgui_touch_hw_init();
|
|
|
|
|
rtgui_panel_init();
|
|
|
|
|
}
|