summaryrefslogtreecommitdiff
path: root/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'print.h')
-rw-r--r--print.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/print.h b/print.h
index 77290520e..78912df81 100644
--- a/print.h
+++ b/print.h
@@ -3,15 +3,13 @@
#include <stdbool.h>
#include <avr/pgmspace.h>
-#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);