2011-09-17 12:08:44 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
Filename: hal_lcd_fonts.h
|
|
|
|
|
|
|
|
Copyright 2008 Texas Instruments, Inc.
|
|
|
|
***************************************************************************/
|
2014-01-19 16:30:17 +00:00
|
|
|
#ifndef __HAL_LCD_FONTS_H
|
|
|
|
#define __HAL_LCD_FONTS_H
|
2011-09-17 12:08:44 +00:00
|
|
|
|
|
|
|
#define FONT_HEIGHT 12 // Each character has 13 lines
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
extern const uint8_t fonts_lookup[];
|
|
|
|
extern const uint16_t fonts[];
|
2014-01-19 16:30:17 +00:00
|
|
|
|
|
|
|
#endif // __HAL_LCD_FONTS_H
|