This commit is contained in:
moyuhai
2026-06-09 16:39:17 +08:00
commit 41a602f89c
3057 changed files with 771495 additions and 0 deletions
@@ -0,0 +1,11 @@
#ifndef __UART_H
#define __UART_H
#include <stdint.h>
extern void uart_tick(void);
extern void uart_recv(void (*func)(uint8_t *, uint8_t));
extern void uart_rxbyte(uint8_t data);
extern uint8_t uart_trx(uint8_t *txdata, uint8_t *rxdata);
#endif