feat(ex03): it works hehe

This commit is contained in:
Maix0 2026-04-15 16:02:30 +02:00
parent d70042cf93
commit a87568e5f7
11 changed files with 291 additions and 0 deletions

13
ex03/include/uart.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef UART_H
#define UART_H
#include "mystd.h"
void uart_init(void);
void uart_tx(char data);
void uart_sendstring(const char* str);
char uart_rx(void);
#endif /* UART_H */