X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=print.h;h=d61e5de3e096101975f126ff8863925e80bee1a9;hb=ba2f31e2cd2ff9ce3a7c433632aff8312ce18014;hp=d6bb0aad2d5a3d55c4fe82441c8755c229999f12;hpb=8cfb3712d58e4a88029dfd00111714e91939005e;p=max%2Ftmk_keyboard.git diff --git a/print.h b/print.h index d6bb0aad..d61e5de3 100644 --- a/print.h +++ b/print.h @@ -1,8 +1,8 @@ -#ifndef print_h__ -#define print_h__ +#ifndef PRINT_H__ +#define PRINT_H__ 1 #include -#include "usb_keyboard_debug.h" +#include "usb_debug.h" // this macro allows you to write print("some text") and // the string is automatically placed into flash memory :) @@ -13,5 +13,6 @@ void print_P(const char *s); void phex(unsigned char c); void phex16(unsigned int i); void pbin(unsigned char c); +void pbin_reverse(unsigned char c); #endif