Added the config for the relays
[cerebrum.git] / common / uart.h
blobad2c80ba1aef08063219f5e0e22fdca5bfae241b
1 #ifndef UART_H
2 #define UART_H
4 #include <stdint.h>
6 void uart_init(void);
7 void uart_putc(uint8_t data);
8 void uart_putc_nonblocking(uint8_t data);
10 #endif // UART_H