LED_panel
« Back to documentation index
Show/hide line numbers
font.h Source File
font.h
00001 #ifndef __FONT_H__
00002 #define __FONT_H__
00003
00004
00005 typedef unsigned char uint8_t;
00006
00007
00008 typedef struct
00009 {
00010 int width;
00011 int offset;
00012 }
00013 FONT_CHAR_INFO;
00014
00015
00016 typedef struct
00017 {
00018 int height;
00019 char start_char;
00020 const FONT_CHAR_INFO *p_character_descriptor;
00021 const uint8_t *p_character_bitmaps;
00022 }
00023 FONT_INFO;
00024
00025
00026 #endif // __FONT_H__