mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-11 02:59:09 +00:00
8 lines
160 B
C
8 lines
160 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
void uart_init(uint32_t baud);
|
|
void uart_putchar(uint8_t c);
|
|
uint8_t uart_getchar(void);
|
|
uint8_t uart_available(void);
|