1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include "stm32f0xx_it.h"
- #include "stm32f0xx_hal.h"
- /**
- * @brief This function handles Non maskable interrupt.
- */
- void NMI_Handler(void)
- {
- while (1) {}
- }
- /**
- * @brief This function handles Hard fault interrupt.
- */
- void HardFault_Handler(void)
- {
- while (1) {}
- }
- /**
- * @brief This function handles System service call via SWI instruction.
- */
- void SVC_Handler(void)
- {
- }
- /**
- * @brief This function handles Pendable request for system service.
- */
- void PendSV_Handler(void)
- {
- }
- /**
- * @brief This function handles System tick timer.
- */
- #if 0
- void SysTick_Handler(void)
- {
- HAL_IncTick();
- }
- #endif
|