1 /******************************************************************************* 2 Filename: hal_lcd_fonts.h 3 4 Copyright 2008 Texas Instruments, Inc. 5 ***************************************************************************/ 6 #ifndef __HAL_LCD_FONTS_H 7 #define __HAL_LCD_FONTS_H 8 9 #define FONT_HEIGHT 12 // Each character has 13 lines 10 11 #include <stdint.h> 12 13 extern const uint8_t fonts_lookup[]; 14 extern const uint16_t fonts[]; 15 16 #endif // __HAL_LCD_FONTS_H 17