demo/include/fonts.h

24 lines
373 B
C
Raw Normal View History

2020-02-23 15:36:49 +00:00
#ifndef __FONTS_H
#define __FONTS_H
#define MAX_HEIGHT_FONT 41
#define MAX_WIDTH_FONT 32
#include <stdint.h>
//ASCII
typedef struct _tFont
{
const uint8_t *table;
uint16_t Width;
uint16_t Height;
} sFONT;
extern sFONT Font24;
extern sFONT Font20;
extern sFONT Font16;
extern sFONT Font12;
extern sFONT Font8;
#endif