Rev 7 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
/*
* Font.h
*
* Created on: 20 Dec 2015
* Author: Mike
*/
#ifndef INC_FONT_H_
#define INC_FONT_H_
extern void font_gotoxy(uint8_t x,uint8_t y);
extern void font_putchar(uint8_t c);
extern void font_puts(uint8_t * s);
extern void scan_xbm(void);
extern void print_digits(uint8_t x, uint8_t y, uint8_t digits, uint8_t dp_pos, int i);
extern void print_rotated(uint8_t x, uint8_t y, int ang, uint8_t val);
#endif /* INC_FONT_H_ */