EFR32 Blue Gecko 1 Software Documentation  efr32bg1-doc-5.1.2
udelay.h
Go to the documentation of this file.
1 /**************************************************************************/
17 #ifndef __UDELAY_H
18 #define __UDELAY_H
19 
20 #include <stdint.h>
21 
22 /***************************************************************************/
27 /***************************************************************************/
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 
36 void UDELAY_Calibrate(void);
37 void UDELAY_Delay(uint32_t usecs);
38 
39 #ifdef __cplusplus
40 }
41 #endif
42 
46 #endif
void UDELAY_Calibrate(void)
Calibrates the microsecond delay loop.
Definition: udelay.c:71
void UDELAY_Delay(uint32_t usecs)
Microsecond active wait delay routine.
Definition: udelay.c:284