Implementation of basic UART functions. More...
#include <stddef.h>
#include <stdint.h>
#include <common/string.h>
#include <kernel/uart.h>
#include <kernel/mmio.h>
#include <peripherals/gpio.h>
#include <peripherals/aux.h>
Functions | |
void | uart_init () |
void | uart_putc (unsigned char c) |
unsigned char | uart_getc () |
void | uart_puts (const char *str) |
char * | uart_gets () |
void | handle_uart_irq () |
Implementation of basic UART functions.