mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-08 12:50:52 +00:00
17 lines
491 B
C
17 lines
491 B
C
|
/*******************************************************************************
|
||
|
Filename: hal_lcd_fonts.h
|
||
|
|
||
|
Copyright 2008 Texas Instruments, Inc.
|
||
|
***************************************************************************/
|
||
|
#ifndef __HAL_LCD_FONTS_H
|
||
|
#define __HAL_LCD_FONTS_H
|
||
|
|
||
|
#define FONT_HEIGHT 12 // Each character has 13 lines
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
extern const uint8_t fonts_lookup[];
|
||
|
extern const uint16_t fonts[];
|
||
|
|
||
|
#endif // __HAL_LCD_FONTS_H
|