Files
player/Project/Src/Drive/Include/delay.h

11 lines
179 B
C
Raw Normal View History

2025-06-27 00:32:57 +08:00
#ifndef __DELAY_H
#define __DELAY_H
#include "stm32f4xx.h"
void Delay_Init(void); //延时函数初始化
void Delay_ms(u32 nTime); //毫秒延时函数
#endif //__DELAY_H