#include "at32f403a_407_int.h" /** * @brief this function handles nmi exception. * @param none * @retval none */ void NMI_Handler(void) { } /** * @brief this function handles hard fault exception. * @param none * @retval none */ void HardFault_Handler(void) { /* go to infinite loop when hard fault exception occurs */ while(1) { } } /** * @brief this function handles memory manage exception. * @param none * @retval none */ void MemManage_Handler(void) { /* go to infinite loop when memory manage exception occurs */ while(1) { } } /** * @brief this function handles bus fault exception. * @param none * @retval none */ void BusFault_Handler(void) { /* go to infinite loop when bus fault exception occurs */ while(1) { } } /** * @brief this function handles usage fault exception. * @param none * @retval none */ void UsageFault_Handler(void) { /* go to infinite loop when usage fault exception occurs */ while(1) { } } /** * @brief this function handles debug monitor exception. * @param none * @retval none */ void DebugMon_Handler(void) { }