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

📄 abl_fonts.h

📁 在sharp 404开发板的串口测试代码
💻 H
字号:
/**********************************************************************
 * $Workfile:   abl_fonts.h  $
 * $Revision:   1.1  $
 * $Author:   WellsK  $
 * $Date:   Jun 30 2003 16:01:06  $
 *
 * Project: Fonts selection
 *
 * Description:
 *     This package provides a common font information structure.
 *
 * Revision History:
 * $Log:   //smaicnt2/pvcs/VM/sharpmcu/archives/sharpmcu/software/abl/include/abl_fonts.h-arc  $
 * 
 *    Rev 1.1   Jun 30 2003 16:01:06   WellsK
 * Removed enumeration and fonts array.
 * 
 *    Rev 1.0   Jun 09 2003 12:02:12   WellsK
 * Initial revision.
 * 
 *
 ***********************************************************************
 * SHARP MICROELECTRONICS OF THE AMERICAS MAKES NO REPRESENTATION
 * OR WARRANTIES WITH RESPECT TO THE PERFORMANCE OF THIS SOFTWARE,
 * AND SPECIFICALLY DISCLAIMS ANY RESPONSIBILITY FOR ANY DAMAGES, 
 * SPECIAL OR CONSEQUENTIAL, CONNECTED WITH THE USE OF THIS SOFTWARE.
 *
 * SHARP MICROELECTRONICS OF THE AMERICAS PROVIDES THIS SOFTWARE SOLELY 
 * FOR THE PURPOSE OF SOFTWARE DEVELOPMENT INCORPORATING THE USE OF A 
 * SHARP MICROCONTROLLER OR SYSTEM-ON-CHIP PRODUCT. USE OF THIS SOURCE
 * FILE IMPLIES ACCEPTANCE OF THESE CONDITIONS.
 *
 * COPYRIGHT (C) 2001 SHARP MICROELECTRONICS OF THE AMERICAS, INC.
 *     CAMAS, WA
 **********************************************************************/
 
#ifndef ABL_FONTS_H
#define ABL_FONTS_H

#include "abl_types.h"

#ifdef __cplusplus
#if __cplusplus
extern "C"
{
#endif
#endif

/***********************************************************************
 * Font information structure
 **********************************************************************/

/* Font data structure */
typedef struct
{
    INT_16 font_height;
    UNS_8  first_char;
    UNS_8  last_char;
    UNS_16 *font_table;
    UNS_8  *font_width_table;
} FONT_T;

#ifdef __cplusplus
}
#endif

#endif /* ABL_FONTS_H */

⌨️ 快捷键说明

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