📄 config.h
字号:
/****************************************Copyright (c)**************************************************
**
**
**
**
**--------------File Info-------------------------------------------------------------------------------
** File Name: config.h
** Last modified Date: 2004-09-17
** Last Version: 1.0
** Descriptions: User Configurable File
**
**------------------------------------------------------------------------------------------------------
** Created By: jaio jin xing
** Created date: 2004-09-17
** Version: 1.0
** Descriptions: First version
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
**
********************************************************************************************************/
#ifndef __CONFIG_H
#define __CONFIG_H
//这一段无需改动
//This segment should not be modified
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef unsigned char uint8; /* defined for unsigned 8-bits integer variable 无符号8位整型变量 */
typedef signed char int8; /* defined for signed 8-bits integer variable 有符号8位整型变量 */
typedef unsigned short uint16; /* defined for unsigned 16-bits integer variable 无符号16位整型变量 */
typedef signed short int16; /* defined for signed 16-bits integer variable 有符号16位整型变量 */
typedef unsigned int uint32; /* defined for unsigned 32-bits integer variable 无符号32位整型变量 */
typedef signed int int32; /* defined for signed 32-bits integer variable 有符号32位整型变量 */
typedef float fp32; /* single precision floating point variable (32bits) 单精度浮点数(32位长度) */
typedef double fp64; /* double precision floating point variable (64bits) 双精度浮点数(64位长度) */
/********************************/
/* ARM的特殊代码 */
/* ARM specital code */
/********************************/
//这一段无需改动
//This segment should not be modify
#define BLACK 0x000000 //黑
#define BLUE 0xFF0000 //蓝
#define GREEN 0x00ff00 //绿
#define CYAN 0xffff00 //青
#define RED 0x0000FF //红
#define MAGENTA 0x8b008b //洋红
#define BROWN 0x2a2aa5 //褐
#define DARKGRAY 0x404040 //深灰
#define GRAY 0x808080 //灰
#define LIGHTGRAY 0xd3d3d3 //浅灰
#define LIGHTBLUE 0xff8080 //淡蓝
#define LIGHTGREEN 0x80ff80 //淡绿
#define LIGHTCYAN 0x80ffff //淡青
#define LIGHTRED 0x8080ff //淡红
#define LIGHTMAGENTA 0xff80ff //淡洋红
#define YELLOW 0x00ffff //黄
#define WHITE 0xffffff //白
/********************************/
/* 应用程序配置 */
/*Application Program Configurations*/
/********************************/
//以下根据需要改动
//This segment could be modified as needed.
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <setjmp.h>
#include <rt_misc.h>
#include <string.h>
#include "GUI_CONFIG.H"
#include "LCMDRV.H"
#include "CONVERTCOLOR.H"
#include "FONT_MACRO.H"
#include "FONT5_7.H"
#include "FONT8_8.H"
#include "FONT24_32.H"
#include "GUI_BASIC.H"
#include "GUI_STOCKC.H"
#include "LOADBIT.H"
#include "SPLINE.H"
#include "WINDOWS.H"
#include "MENU.H"
#include "MY_WINDOWS.H"
#include "J_FONT.H"
#include "J_PYIME.H"
#include "ucos_ii.h"
#include "GBA.h"
#endif
/********************************************************************************************************
** End Of File
********************************************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -