10 lines
140 B
C
10 lines
140 B
C
#ifndef font_h
|
|
#define font_h
|
|
|
|
#include <stdint.h>
|
|
extern uint8_t font[];
|
|
#define GLYPH_HEIGHT 8
|
|
#define GLYPH_WIDTH 6
|
|
|
|
#endif /* font_h */
|