Files
player/Project/Src/Drive/Include/delay.h
andy 045cff4cc6 整理代码
1.解决一些编译警告
2.发现png因为文件api不支持而不能使用
2025-10-18 13:58:40 +08:00

10 lines
174 B
C

#ifndef __DELAY_H
#define __DELAY_H
#include "stdint.h"
void Delay_Init(void); // 延时函数初始化
void Delay_ms(uint32_t nTime); // 毫秒延时函数
#endif //__DELAY_H