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

void uart_init(void);
void uart_put_char(char c);
void uart_print(const char* str);

#endif