]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - print.h
Synchronous USART support for PS/2 on V-USB stack
[max/tmk_keyboard.git] / print.h
diff --git a/print.h b/print.h
index d61e5de3e096101975f126ff8863925e80bee1a9..78912df81b2dcbb484f756e36dc8956d986bbc0d 100644 (file)
--- a/print.h
+++ b/print.h
@@ -1,13 +1,15 @@
 #ifndef PRINT_H__
 #define PRINT_H__ 1
 
+#include <stdbool.h>
 #include <avr/pgmspace.h>
-#include "usb_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);