diff options
author | Brett Weiland <brett_weiland@bpcsapce.com> | 2023-01-12 13:41:48 -0600 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcsapce.com> | 2023-01-12 13:41:48 -0600 |
commit | b666668d0e6b67e4632e65486cae814ab5abbc39 (patch) | |
tree | 0cf0c2d689799c5e98d505e632248fdc5ed5a072 /src/uart.h | |
parent | 94304b11e7220f060dbc345de5fa1952d0465016 (diff) |
updating for linkedin
Diffstat (limited to 'src/uart.h')
-rw-r--r-- | src/uart.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,8 +1,12 @@ #ifndef __UART_INC #define __UART_INC -void uart_init(); -void uart_sendbyte(uint8_t byte); -uint8_t uart_recvbyte(); +void uart_debug_init(); +void uart_debug_sendbyte(uint8_t byte); +uint8_t uart_debug_recvbyte(); + +void uart_flash_init(); +void uart_flash_sendbyte(uint8_t byte); +uint8_t uart_flash_recvbyte(); #define HARDWARE_FLOW 1 //TODO #endif |