Rev 2 | Rev 9 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | mjames | 1 | /* |
2 | * Font.h |
||
3 | * |
||
4 | * Created on: 20 Dec 2015 |
||
5 | * Author: Mike |
||
6 | */ |
||
7 | |||
8 | #ifndef INC_FONT_H_ |
||
9 | #define INC_FONT_H_ |
||
10 | |||
11 | extern void font_gotoxy(uint8_t x,uint8_t y); |
||
12 | |||
13 | extern void font_putchar(uint8_t c); |
||
14 | |||
15 | extern void font_puts(uint8_t * s); |
||
16 | |||
17 | extern void scan_xbm(void); |
||
18 | |||
7 | mjames | 19 | extern void print_digits(uint8_t x, uint8_t y, uint8_t digits, uint8_t dp_pos, int val); |
2 | mjames | 20 | |
21 | extern void print_rotated(uint8_t x, uint8_t y, int ang, uint8_t val); |
||
22 | |||
23 | |||
24 | #endif /* INC_FONT_H_ */ |