You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
266 B
C

/*
* 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_ */