⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lcd.h

📁 我自己写的在ARM 44B0上能跑通的LCD display 程序
💻 H
字号:
/*********************************************************************************************
* File:	LCD.H
* Author:	embest	
* Desc:	LCD common macro define and function declare
* History:	
*********************************************************************************************/

#ifndef __LCD_H__
#define __LCD_H__

#ifdef __cplusplus
extern "C" {
#endif

#include "def.h"

#define		ESCPORT0			0x003C		//Escape LCD Port0
#define		ESCPORT1			0x003D		//Escape LCD Port1
#define		ESCAEXPADDR			0x003E		//Escape Expansion Address Register
#define		ESCAEXPDATA			0x003F		//Escape Expansion Data Register
#define     CPU32BITDATA 	    2

#define     LCD_MainReg      	0x8000000
#define     LCD_MainData		0x8000200
#define     LCD_SubReg         	0x4000000
#define     LCD_SubData       	0x4000200


#ifdef __cplusplus
}
#endif

#endif /* __LCD_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -