MG32L003 Standard Peripherals Firmware Library
mg32l003_it.h
1 
9 /* Define to prevent recursive inclusion -------------------------------------*/
10 #ifndef __MG32L003_IT_H
11 #define __MG32L003_IT_H
12 
13 #ifdef __cplusplus
14  extern "C" {
15 #endif
16 
17 /* Includes ------------------------------------------------------------------*/
18 #include "mg32l003.h"
19 
20 /* Exported types ------------------------------------------------------------*/
21 /* Exported constants --------------------------------------------------------*/
22 /* Exported macro ------------------------------------------------------------*/
23 /* Exported functions ------------------------------------------------------- */
24 
25 void NMI_Handler(void);
26 void HardFault_Handler(void);
27 void SVC_Handler(void);
28 void PendSV_Handler(void);
29 void SysTick_Handler(void);
30 
31 #ifdef __cplusplus
32 }
33 #endif
34 
35 #endif /* __MG32L003_IT_H */
void SysTick_Handler(void)
This function handles SysTick Handler.
Definition: MG32L003_StdPeriph_Examples/SYSTICK/SYSTICK_Example/main.c:96
void SVC_Handler(void)
This function handles SVCall exception.
Definition: mg32l003_it.c:57
void NMI_Handler(void)
This function handles NMI exception.
Definition: mg32l003_it.c:34
void HardFault_Handler(void)
This function handles Hard Fault exception.
Definition: mg32l003_it.c:43
void PendSV_Handler(void)
This function handles PendSVC exception.
Definition: mg32l003_it.c:68