yincheng.zhong
2024-04-17 65cde01614e7e4112a51ee5a2c6f0415b28fc06e
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