26 lines
408 B
C
26 lines
408 B
C
/* uart.h - UART initialization & communication */
|
|
|
|
#ifndef UART_H
|
|
#define UART_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/*
|
|
* Initialize UART0.
|
|
*/
|
|
void uart_init();
|
|
|
|
/*
|
|
* Transmit a byte via UART0.
|
|
* gU8 Byte: byte to send.
|
|
*/
|
|
void uart_putc(gU8 byte);
|
|
|
|
/*
|
|
* print a string to the UART one character at a time
|
|
* const char *str: 0-terminated string
|
|
*/
|
|
void uart_puts(const char *str);
|
|
|
|
#endif // #ifndef UART_H
|