engine_control/source/firmware/kernel/font.h
2016-07-23 07:59:54 +02:00

20 lines
236 B
C

/*
* font.h
*
* Created on: Jan 15, 2016
* Author: tkl
*/
#ifndef FONT_H_
#define FONT_H_
struct font {
int char_size_x;
int char_size_y;
int char_between;
int char_count;
unsigned char *font;
};
#endif /* FONT_H_ */