summaryrefslogtreecommitdiff
path: root/src/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uart.h')
-rw-r--r--src/uart.h10
1 files changed, 7 insertions, 3 deletions
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