diff options
| author | Christian Cunningham <cc@localhost> | 2022-02-04 00:05:50 -0700 | 
|---|---|---|
| committer | Christian Cunningham <cc@localhost> | 2022-02-04 00:05:50 -0700 | 
| commit | cfebe5feb55777bb377ff310b8cde03f3e0c25ff (patch) | |
| tree | 7877e930627b5665431ed2104fb79e20a8ef1159 /include | |
| parent | f4f23afb28268570d0da7f70bda6d2bcf760f839 (diff) | |
Access Uart through rotating buffer
Diffstat (limited to 'include')
| -rw-r--r-- | include/drivers/uart.h | 3 | 
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); | 
