QuakeGod
2023-01-28 16eeda8e1e205da3395f6933f6f82b22da63c76b
提交 | 用户 | age
076cda 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