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

14
Driver/timer4.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef __TIMER4_H__
#define __TIMER4_H__
#include "config.h"
#include <STC15.H>
// #define FOSC 30000000UL // 系统时钟30MHz
void Timer4_Init(void);
void Timer4_DelayUs(u16 us);
void Timer4_DelayMs(u16 ms);
void Timer4_Stop(void);
#endif