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