?? config.h
字號:
/****************************************************************************
* 文件名:CONFIG.H
* 功能:配置文件,用于LCM_DISP項目。(目的在于方便項目管理)
* 說明:所有項目C程序文件包含此頭文件即可。
****************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef uint8
#define uint8 unsigned char
#endif
#ifndef uint16
#define uint16 unsigned int
#endif
/* 定義LCM像素數(shù)宏 */
#define LCM_XMAX 128
#define LCM_YMAX 64
/* 包含頭文件 */
#include <Reg52.h>
#include <stdlib.h>
#include "LCM_DRIVE.H"
#include "GRAPHICS.H"
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -