QuakeGod
2022-10-17 6a62617e99d79314d1e10995fbc29fbb00419a6e
提交 | 用户 | age
6a6261 1 #ifndef _DELAY_H_
Q 2 #define _DELAY_H_
3
4 #include<stdint.h>
5
6 //extern volatile  uint32_t TickCounter;
7 //extern volatile  uint32_t ticktimer;
8
9 void Delay_Us (uint32_t delay);
10 void Delay_Ms(uint32_t delay );
11 void HAL_Delay_nMS(uint32_t Delay );
12
13 //#define HAL_GetTick()  TickCounter
14
15 #endif
16