summaryrefslogtreecommitdiff
path: root/src/uart.h
blob: 3fe45cc4d16332c79260634e828cecdff6b51c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __UART_INC
#define __UART_INC
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