mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
10 lines
125 B
C
10 lines
125 B
C
#ifndef UART_H
|
|
#define UART_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void uart_init(uint32_t baud);
|
|
void uart_putc(char c);
|
|
|
|
#endif // UART_H
|