22 lines
446 B
C
22 lines
446 B
C
/*******************************************************************
|
|
File: fonts.h
|
|
Date: 30-September-2020
|
|
Author: Peter Spindler
|
|
********************************************************************/
|
|
|
|
#ifndef _FONTS_H_
|
|
#define _FONTS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
const uint8_t *table;
|
|
uint16_t Width;
|
|
uint16_t Height;
|
|
} FONT_TypeDef;
|
|
|
|
extern FONT_TypeDef FontBig;
|
|
extern FONT_TypeDef FontSmall;
|
|
|
|
#endif
|