aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/uart.a.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/uart.a.h')
-rw-r--r--src/drivers/uart.a.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/drivers/uart.a.h b/src/drivers/uart.a.h
deleted file mode 100644
index c14fa69..0000000
--- a/src/drivers/uart.a.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef DRIVERS_UART_A_H
-#define DRIVERS_UART_A_H
-
-#define PRINTS_DBG(X) uart_char('[');uart_string(__FILE__);uart_char(':');uart_10(__LINE__);uart_string("] ");uart_string(X);
-#define PRINTI_DBG(X) uart_char('[');uart_string(__FILE__);uart_char(':');uart_10(__LINE__);uart_string("] ");uart_10(X);
-
-extern void uart_char(unsigned char c);
-extern void uart_hex(unsigned long data);
-extern void uart_string(char* message);
-
-#endif