]> git.karo-electronics.de Git - oswald.git/blob - ui/oswald_fonts.c
Starting to get rid of borrowed code (LcdDisplay, Fonts), integrate
[oswald.git] / ui / oswald_fonts.c
1 #include "oswald_fonts.h"
2
3 //#include "fonts/m4x6_horizontal_LSB_1.h"
4 //#include "fonts/m5x8_horizontal_LSB_1.h"
5 //#include "fonts/m5x12_horizontal_LSB_1.h"
6 #include "fonts/m6x8_horizontal_LSB_1.h"
7 //#include "fonts/m6x10_horizontal_LSB_1.h"
8 #include "fonts/m7x12b_horizontal_LSB_1.h"
9 //#include "fonts/m7x12_horizontal_LSB_1.h"
10 //#include "fonts/m8x8_horizontal_LSB_1.h"
11 //#include "fonts/m8x12_horizontal_LSB_1.h"
12 //#include "fonts/m8x14_horizontal_LSB_1.h"
13 //#include "fonts/m10x16_horizontal_LSB_1.h"
14 //#include "fonts/m12x16_horizontal_LSB_1.h"
15 //#include "fonts/m12x20_horizontal_LSB_1.h"
16 #include "fonts/m16x26_horizontal_LSB_1.h"
17 //#include "fonts/m22x36_horizontal_LSB_1.h"
18 //#include "fonts/m24x40_horizontal_LSB_1.h"
19 //#include "fonts/m32x53_horizontal_LSB_1.h"
20
21 const oswald_font oswald_fonts[LAST_FONT] = {
22 //      { 4, 6, (char *)font_4x6},
23 //      { 5, 8, (char *)font_5x8},
24 //      { 5, 12, (char *)font_5x12},
25         { 6, 8, (uint8_t *)font_6x8},
26 //      { 6, 10, (char *)font_6x10},
27 //      { 7, 12, (uint8_t *)font_7x12},
28         { 7, 12, (uint8_t *)font_7x12b},
29 //      { 8, 8, (char *)font_8x8},
30 //      { 8, 12, (char *)font_8x12},
31 //      { 8, 14, (char *)font_8x14},
32 //      { 10, 16, (char *)font_10x16},
33 //      { 12, 16, (char *)font_12x16},
34 //      { 12, 20, (char *)font_12x20},
35         { 16, 26, (uint8_t *)font_16x26},
36 //      { 22, 36, (char *)font_22x36},
37 //      { 24, 40, (char *)font_24x40},
38 //      { 32, 53, (char *)font_32x53},
39 };
40