OLED显示部分调试

This commit is contained in:
jxh
2025-03-18 19:34:19 +08:00
commit 17afca8f17
18 changed files with 1809 additions and 0 deletions

9
Driver/uart.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef __UART_H__
#define __UART_H__
#include "config.h"
void Uart1_Init(void);
void UART_SendByte(unsigned char dat);
#endif