X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=print.h;h=78912df81b2dcbb484f756e36dc8956d986bbc0d;hb=47f5d8b545eec12ca74d8e7048bb5daa290d937e;hp=77290520e9dc048e41819f944c549fdfcd41ca62;hpb=4acc38751e9c8e90921773e6e5f5a100b0729d98;p=max%2Ftmk_keyboard.git diff --git a/print.h b/print.h index 77290520..78912df8 100644 --- a/print.h +++ b/print.h @@ -3,15 +3,13 @@ #include #include -#include "usb_debug.h" -bool print_enable; +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);