13 lines
208 B
C
13 lines
208 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
void uart_init();
|
|
void uart_send(unsigned int c);
|
|
uint8_t uart_getb();
|
|
char uart_getc();
|
|
void uart_puts(const char *s);
|
|
void uart_hex(uint64_t d);
|
|
|
|
extern int is_uart_init;
|