mirror of
https://github.com/danog/baremetal.git
synced 2024-11-26 20:15:01 +01:00
7 lines
118 B
C
7 lines
118 B
C
#pragma once
|
|
|
|
void uart_init(void);
|
|
void uart_send(char c);
|
|
char uart_recv();
|
|
void uart_send_string(const char *str);
|