Viewing: uart.h
📄 uart.h (Read Only) ⬅ To go back
#ifndef HAL_UART_H
#define HAL_UART_H

void hal_uart_init(void);
int  hal_uart_is_present(void);
void hal_uart_drain_rx(void);
void hal_uart_poll_rx(void);
void hal_uart_putc(char c);
int  hal_uart_try_getc(void);
void hal_uart_set_rx_callback(void (*cb)(char));

#endif