engine_control/source/firmware/kernel/font.h

20 lines
236 B
C
Raw Normal View History

2016-07-23 05:59:54 +00:00
/*
* 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_ */