From b666668d0e6b67e4632e65486cae814ab5abbc39 Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Thu, 12 Jan 2023 13:41:48 -0600 Subject: updating for linkedin --- src/uart.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/uart.h') diff --git a/src/uart.h b/src/uart.h index 5536df0..3fe45cc 100644 --- a/src/uart.h +++ b/src/uart.h @@ -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 -- cgit v1.2.3