aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-04 00:05:50 -0700
committerChristian Cunningham <cc@localhost>2022-02-04 00:05:50 -0700
commitcfebe5feb55777bb377ff310b8cde03f3e0c25ff (patch)
tree7877e930627b5665431ed2104fb79e20a8ef1159 /include
parentf4f23afb28268570d0da7f70bda6d2bcf760f839 (diff)
Access Uart through rotating buffer
Diffstat (limited to 'include')
-rw-r--r--include/drivers/uart.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drivers/uart.h b/include/drivers/uart.h
index b83732f..1491f20 100644
--- a/include/drivers/uart.h
+++ b/include/drivers/uart.h
@@ -9,6 +9,9 @@ extern void uart_char(unsigned char c);
extern void uart_string(char* message);
extern void uart_hex(unsigned long data);
+void uart_init();
+void* uart_print(char*);
+void uart_flush(void);
void uart_10(unsigned long);
void uart_hexn(unsigned long);