diff options
author | Christian Cunningham <cc@localhost> | 2021-12-21 19:36:58 -0800 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2021-12-21 19:36:58 -0800 |
commit | cf2618101ef832a9652d84b43ed5f558da401248 (patch) | |
tree | 6d9c60a6ecb9ae22fb0223f30127dbda76d2fe74 /src/drivers/uart.a.h | |
parent | 969b39a6970d3c4f5ddb89048699325c96939d32 (diff) |
Consolidated UART Headers
Diffstat (limited to 'src/drivers/uart.a.h')
-rw-r--r-- | src/drivers/uart.a.h | 11 |
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 |