STM32 Bootloader
Customizable Bootloader for STM32 microcontrollers
delay.h
Go to the documentation of this file.
1 
15 #ifndef BSP_DELAY_H
16 #define BSP_DELAY_H
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
31 /* Includes ------------------------------------------------------------------*/
32 #include <stdint.h>
33 
34 /* Function prototypes -------------------------------------------------------*/
40 void DelayMs(const uint32_t delayMs);
41 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif
void DelayMs(const uint32_t delayMs)
Blocking delay for the specified number of milliseconds.
Definition: delay.c:31