?? main.c
字號:
/****************************************Copyright (c)***************************************************
** Guangzou ZHIYUAN electronics Co.,LTD.
**
** http://www.embedtools.com
**
**--------------File Info--------------------------------------------------------------------------------
** File name: main.c
** Last modified Date: 2008.04.25
** Last Version: V1.00
** Descriptions: The main() function example template
**
**-------------------------------------------------------------------------------------------------------
** Created by: Houxiaolong
** Created date: 2008.04.25
** Version: V1.00
** Descriptions:
**
**-------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
**
*********************************************************************************************************/
#include "config.h"
#include "LCD2478.h"
#include "cursor.h"
/*********************************************************************************************************
** 函數名稱 :showlogo()
** 函數功能 :顯示LOGO和進度條
** 調試說明 :
*********************************************************************************************************/
extern void showLogo(void);
/*********************************************************************************************************
** 函數名稱 :graphicDemo()
** 函數功能 :演示2D圖形,包括多邊形顯示,儀表顯示
** 調試說明 :
*********************************************************************************************************/
extern void graphicDemo(void);
/*********************************************************************************************************
** 函數名稱 :FrameDemo()
** 函數功能 :顯示窗口功能,包括移動窗口,最大化窗口,顯示菜單等
** 調試說明 :
*********************************************************************************************************/
extern void FrameDemo(void);
/*********************************************************************************************************
** 函數名稱 :main()
** 函數功能 :演示LPC247X的LCD控制器
** 調試說明 :本程序不能在內部RAM中調試
*********************************************************************************************************/
int main (void)
{
GUI_Initialize(); /* 初始化ZLGGUI */
while(1) {
showLogo(); /* 顯示LOGO */
graphicDemo(); /* 2D圖形演示 */
FrameDemo(); /* 窗口圖形演示 */
}
return 0;
}
/*********************************************************************************************************
** End Of File
*********************************************************************************************************/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -