summaryrefslogtreecommitdiff
path: root/src/uart.h
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcsapce.com>2022-09-27 16:14:28 -0500
committerBrett Weiland <brett_weiland@bpcsapce.com>2022-09-27 16:14:28 -0500
commit94304b11e7220f060dbc345de5fa1952d0465016 (patch)
treef16e84c54b27f67e089ded1175fbf8b561896b42 /src/uart.h
parent7b006d6f2032ac46074d693ae59a971bee327ace (diff)
working on serial syncronization for programming eeprom
Diffstat (limited to 'src/uart.h')
-rw-r--r--src/uart.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/uart.h b/src/uart.h
index b5f043a..5536df0 100644
--- a/src/uart.h
+++ b/src/uart.h
@@ -1,3 +1,8 @@
+#ifndef __UART_INC
+#define __UART_INC
void uart_init();
void uart_sendbyte(uint8_t byte);
uint8_t uart_recvbyte();
+
+#define HARDWARE_FLOW 1 //TODO
+#endif