STM32 Bootloader
Customizable Bootloader for STM32 microcontrollers
delay.c
Go to the documentation of this file.
1 
25 /* Includes ------------------------------------------------------------------*/
26 #include "delay.h"
27 
28 #include "mcu_hal.h"
29 
30 /* Functions -----------------------------------------------------------------*/
31 void DelayMs(const uint32_t delayMs)
32 {
33  HAL_Delay(delayMs);
34 }
35 
This file contains the delay function prototypes.
void DelayMs(const uint32_t delayMs)
Blocking delay for the specified number of milliseconds.
Definition: delay.c:31
This file includes the microcontroller-specific HAL header files.