2015-04-09 18:32:04 +02:00
|
|
|
#ifndef _uart_included_h_
|
|
|
|
#define _uart_included_h_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
void uart_init(uint32_t baud);
|
|
|
|
void uart_putchar(uint8_t c);
|
2015-04-09 18:32:04 +02:00
|
|
|
uint8_t uart_getchar(void);
|
|
|
|
uint8_t uart_available(void);
|
|
|
|
|
|
|
|
#endif
|