open-story-teller/software/cpu/atmel-samd21/uart.h
2023-04-18 16:20:41 +02:00

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