Files

9 lines
131 B
C
Raw Permalink Normal View History

2025-03-18 19:34:19 +08:00
#ifndef __UART_H__
#define __UART_H__
#include "config.h"
2025-03-18 22:49:46 +08:00
void Uart1_Init (void);
void UART_SendByte (unsigned char dat);
2025-03-18 19:34:19 +08:00
#endif