yincheng.zhong
2024-11-19 9115414a73e9c9e47a6659be95c6f9f0304757f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _DELAY_H_
#define _DELAY_H_
 
#include<stdint.h>
 
//extern volatile  uint32_t TickCounter;
//extern volatile  uint32_t ticktimer;
 
void Delay_Us (uint32_t delay);
void Delay_Ms(uint32_t delay );
void HAL_Delay_nMS(uint32_t Delay );
 
//#define HAL_GetTick()  TickCounter
 
#endif