QuakeGod
2023-10-08 483170e190a0dd4666b2a63e5d31466052ba0c6a
提交 | 用户 | age
483170 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