rotator/Drivers/ili9341/fonts.h
Vladimir Karpenko f97da68066 Init
2019-09-10 15:21:37 +03:00

18 lines
297 B
C

/* vim: set ai et ts=4 sw=4: */
#ifndef __FONTS_H__
#define __FONTS_H__
#include <stdint.h>
typedef struct {
const uint8_t width;
uint8_t height;
const uint16_t *data;
} FontDef;
extern FontDef Font_7x10;
extern FontDef Font_11x18;
extern FontDef Font_16x26;
#endif // __FONTS_H__