]> git.gir.st - tmk_keyboard.git/blob - print.h
add mouse function.
[tmk_keyboard.git] / print.h
1 #ifndef PRINT_H__
2 #define PRINT_H__ 1
3
4 #include <avr/pgmspace.h>
5 #include "usb_debug.h"
6
7 // this macro allows you to write print("some text") and
8 // the string is automatically placed into flash memory :)
9 #define print(s) print_P(PSTR(s))
10 #define pchar(c) usb_debug_putchar(c)
11
12 void print_P(const char *s);
13 void phex(unsigned char c);
14 void phex16(unsigned int i);
15 void pbin(unsigned char c);
16 void pbin_reverse(unsigned char c);
17
18 #endif
Imprint / Impressum