QuakeGod
2022-10-17 6a62617e99d79314d1e10995fbc29fbb00419a6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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