diff options
author | Brett Weiland <brett_weiland@bpcsapce.com> | 2022-09-27 16:14:28 -0500 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcsapce.com> | 2022-09-27 16:14:28 -0500 |
commit | 94304b11e7220f060dbc345de5fa1952d0465016 (patch) | |
tree | f16e84c54b27f67e089ded1175fbf8b561896b42 /src/uart.h | |
parent | 7b006d6f2032ac46074d693ae59a971bee327ace (diff) |
working on serial syncronization for programming eeprom
Diffstat (limited to 'src/uart.h')
-rw-r--r-- | src/uart.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |