/* * UART.h * * Created: 18/11/2021 17:13:16 * Author: n0x */ #ifndef UART_H_ #define UART_H_ void uart_init(void); void uart_send(char* string); void uart_init_isr(void); void uart_send_isr(char* string); int checkIfBlocked(void); #endif /* UART_H_ */