61extern int puts(
const char *s);
void uart_log_putchar(void *arg, char c)
Writes a single character 'c' to the log output.
Definition uart.c:17
int uart_puts(const char *s)
Writes the null-terminated string 's' to the UART output.
Definition uart.c:39
char get_uart_input(void)
Waits for and returns a single character from the UART input.
Definition uart.c:65
int uart_getchar(void)
Reads a single character from the UART input.
Definition uart.c:52
int puts(const char *s)
Writes the null-terminated string 's' to the standard output.
Definition uart.c:94
int uart_putchar(int c)
Writes a single character 'c' to the UART output.
Definition uart.c:27
int tstc()
Tests whether a character is waiting in the UART input buffer.
Definition uart.c:89