1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/gen/fonts.h

17 lines
301 B
C
Raw Normal View History

2014-04-29 12:26:51 +00:00
#ifndef __FONTS_H__
#define __FONTS_H__
#include <stdint.h>
#define FONT_HEIGHT 8
#define FONT_STANDARD 0
#define FONT_FIXED 1
#define FONT_DOUBLE 0x80
2014-04-29 12:26:51 +00:00
extern const uint8_t * const font_data[2][128];
2014-04-29 12:26:51 +00:00
int fontCharWidth(int font, char c);
const uint8_t *fontCharData(int font, char c);
2014-04-29 12:26:51 +00:00
#endif