QuakeGod
2024-07-27 842bb64195f958b050867c50db66fc0aa413dafb
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