lcd_lpc23xx.h
来自「Show Interworking of ARM/Thumb code on L」· C头文件 代码 · 共 53 行
H
53 行
/*
********************************************************************
*
* File: LCD_LPC23xx.h
*
* System: ARM7TDMI-S 32 Bit
*
* Compiler: GCC 4.0.0.0
*
* Date: 2006-08-25
*
* Author: Wenz
*
* Rights: Hitex Development Tools GmbH
* Greschbachstr. 12
* D-76229 Karlsruhe
*
********************************************************************
* Description
*
* function declaration for LCD module (A162) 2x16 driver
*
********************************************************************
*
* History:
*
* Initial revision
*
*
********************************************************************
*/
#if !defined _LCD_23XX_H
#define _LCD_23XX_H
#include "defines.h"
extern void vLCDInit(void);
extern void vLCDLoad (uint8_t *fp, uint32_t cnt);
extern void vLCDGoto (uint32_t x, uint32_t y);
extern void vLCDCls (void);
extern void vLCDCursorOff(void);
extern void vLCDsSwitchOn(void);
extern void vLCDPutc (int8_t c);
extern void vLCDPuts(int8_t *sp);
extern void vLCDBargraph (uint32_t val, uint32_t size);
#endif
/*----------------------------------------------------------------------------
* end of file
*---------------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?