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