lcd_mcb2300.h

来自「Show hou use semaphores in RTL-ARM」· C头文件 代码 · 共 53 行

H
53
字号
/* 
 ********************************************************************
 * Project:    GNU-Port FreeRTOS Port 
 * File:    	lcd_mcb2300.h
 *
 * System:   	ARM7TDMI-S 32 Bit
 * Compiler:  	GCC 4.0.3
 *
 * Date:      	2006-08-31
 * Author:    	Wenz
 *
 * Rights:    	Hitex Development Tools GmbH
 *            	Greschbachstr. 12
 *            	D-76229 Karlsruhe
 ********************************************************************
 * Description:
 *	
 *	function declaration for LCD module (A162) 2x16 driver 
 ******************************************************************
 * History:
 *
 *  Revision 1.0    2006/09/27      We
 *     Initial revision 
 ********************************************************************
 * This software is provided by the author 'AS IS' without any 
 * warranties. Hitex Development Tools GmbH shall not be held 
 * liable for any direct, indirect or consequential damages with
 * respect to any claims arising from the content of such software.
 ********************************************************************/


#if !defined _LCD_23XX_H
#define		_LCD_23XX_H

#include "FreeRTOS.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);
//extern void vStartLCDTasks( unsigned portBASE_TYPE uxPriority );
//extern static void vLCDTask( void *pvParameters );
#endif
/*----------------------------------------------------------------------------
 * end of file
 *---------------------------------------------------------------------------*/

⌨️ 快捷键说明

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