X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=print.h;h=78912df81b2dcbb484f756e36dc8956d986bbc0d;hb=47f5d8b545eec12ca74d8e7048bb5daa290d937e;hp=1de618fbaabacb46d4fe2d0691d09ecd2ca108ff;hpb=ac3134ffeb3a2fb998e628e97a06b413fba8ee48;p=max%2Ftmk_keyboard.git diff --git a/print.h b/print.h index 1de618fb..78912df8 100644 --- a/print.h +++ b/print.h @@ -1,16 +1,20 @@ -#ifndef print_h__ -#define print_h__ +#ifndef PRINT_H__ +#define PRINT_H__ 1 +#include #include -#include "usb_keyboard_debug.h" + + +extern bool print_enable; // this macro allows you to write print("some text") and // the string is automatically placed into flash memory :) #define print(s) print_P(PSTR(s)) -#define pchar(c) usb_debug_putchar(c) 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