trezor-mcu/gen/fonts.h

14 lines
203 B
C
Raw Normal View History

2014-04-29 05:26:51 -07:00
#ifndef __FONTS_H__
#define __FONTS_H__
#include <stdint.h>
#define FONT_HEIGHT 8
2015-02-15 11:47:53 -08:00
extern const uint8_t * const font_data[256];
2014-04-29 05:26:51 -07:00
2015-02-13 06:37:23 -08:00
int fontCharWidth(char c);
const uint8_t *fontCharData(char c);
2014-04-29 05:26:51 -07:00
#endif