STM32 Bootloader
Customizable Bootloader for STM32 microcontrollers
error_handler.h
Go to the documentation of this file.
1 
15 #ifndef ERROR_HANDLER_H
16 #define ERROR_HANDLER_H
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
29 /* Functions -----------------------------------------------------------------*/
33 void ErrorHandler(void);
34 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif
void ErrorHandler(void)
This function is executed in case of error occurrence.
Definition: error_handler.c:32