]> git.gir.st - tmk_keyboard.git/blob - print.h
change file name.
[tmk_keyboard.git] / print.h
1 #ifndef print_h__
2 #define print_h__
3
4 #include <avr/pgmspace.h>
5 #include "usb_keyboard_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
16 #endif
Imprint / Impressum