10 lines
174 B
C
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
|