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

11
Lib/delay.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef __DELAY_H__
#define __DELAY_H__
#include "config.h"
#include "timer4.h"
void Delay_Init(void);
void DelayUs(u16 us);
void DelayMs(u16 ms);
#endif