STM32 Bootloader
Customizable Bootloader for STM32 microcontrollers
systick.h
Go to the documentation of this file.
1 
16 #ifndef BSP_SYSTICK_H
17 #define BSP_SYSTICK_H
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
32 /* Functions------------------------------------------------------------------*/
36 void SystickInit(void);
37 
41 void SystickDeInit(void);
42 
49 #ifdef __cplusplus
50 }
51 #endif
52 
53 #endif
void SystickDeInit(void)
De-initialize the SysTick timer.
Definition: systick.c:39
void SystickInit(void)
Initialize the SysTick timer with a 1 ms tick period.
Definition: systick.c:32