12 lines
255 B
C
12 lines
255 B
C
#ifndef FONT_MINI_H
|
|
#define FONT_MINI_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define FONT_WIDTH 16
|
|
#define FONT_HEIGHT 32
|
|
#define FONT_WIDTH_BYTES 2
|
|
|
|
void draw_char(char character, uint8_t* framebuffer, int fb_width, int fb_height, uint8_t scale);
|
|
|
|
#endif // FONT_MINI_H
|