📄 lcd_font.h
字号:
/*****************************************************************************
* LCD_BitMap_Char declarations.
*
* (c) Copyright 2008, Freescale, Inc. All rights reserved.
*
*
* No part of this document must be reproduced in any form - including copied,
* transcribed, printed or by any electronic means - without specific written
* permission from Freescale Semiconductor.
*
*****************************************************************************/
#ifndef _LCD_FONT_H_
#define _LCD_FONT_H_
/*****************************************************************************
******************************************************************************
* Public type declarations
******************************************************************************
*****************************************************************************/
/* Type definition of a font set */
typedef struct
{
const uint16_t* pFontIndexTable;
const uint8_t* pFontCharTable;
uint8_t fontHeight;
} font_t;
/*****************************************************************************
******************************************************************************
* Public macros
******************************************************************************
*****************************************************************************/
/*****************************************************************************
******************************************************************************
* Private prototypes
******************************************************************************
*****************************************************************************/
/*****************************************************************************
******************************************************************************
* Public memory declarations
******************************************************************************
*****************************************************************************/
extern const uint16_t gLCDNormalIndex[];
extern const uint8_t gLCDNormalFont[];
extern const uint16_t gLCDVerdanaIndex[];
extern const uint8_t gLCDVerdanaFont[];
#endif /* _LCD_FONT_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -