You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/legacy/gen/fonts.c

17 lines
306 B

#include "fonts.h"
const uint8_t *const font_data[2][128] = {
{
#include "font.inc"
},
{
#include "fontfixed.inc"
},
};
int fontCharWidth(int font, char c) { return font_data[font][c & 0x7f][0]; }
const uint8_t *fontCharData(int font, char c) {
return font_data[font][c & 0x7f] + 1;
}