📄 lcddraw.h
字号:
/***************************************************************************** * * MODULE: Driver for LCD Driver-Controller * * COMPONENT: $RCSfile: LcdDraw.h,v $ * * VERSION: $Name: zed003_cd $ * * REVISION: $Revision: 1.1 $ * * DATED: $Date: 2006/02/16 13:52:55 $ * * STATUS: $State: Exp $ * * AUTHOR: CJG * * DESCRIPTION: * Provides API for driving LCD panels using LCD Driver-Controller. * * LAST MODIFIED BY: $Author: cjg $ * $Modtime: $ * **************************************************************************** * * (c) Copyright JENNIC Ltd 2006 * ****************************************************************************/#ifndef LCD_DRAW_INCLUDED#define LCD_DRAW_INCLUDED#if defined __cplusplusextern "C" {#endif/****************************************************************************//*** Include Files ***//****************************************************************************/#include "jendefs.h"/****************************************************************************//*** Macro Definitions ***//****************************************************************************//****************************************************************************//*** Type Definitions ***//****************************************************************************//****************************************************************************//*** Exported Functions ***//****************************************************************************/PUBLIC void vLcdPlotPoint(uint8 u8X, uint8 u8Y);PUBLIC bool_t boLcdGetPixel(uint8 u8X, uint8 u8Y);PUBLIC void vLcdFloodFill(int x, int y);PUBLIC void vLcdDrawLine(uint8 u8x1, uint8 u8y1, uint8 u8x2, uint8 u8y2);PUBLIC void vLcdDrawCircle(int Xc,int Yc,int Radius);/****************************************************************************//*** Exported Variables ***//****************************************************************************/#if defined __cplusplus}#endif#endif /* LCD_DRAW_INCLUDED *//****************************************************************************//*** END OF FILE ***//****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -