You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
399 B

  1. #ifndef APP_RUNTIME_TEST_STM32F4XX_IT_H
  2. #define APP_RUNTIME_TEST_STM32F4XX_IT_H
  3. void NMI_Handler(void);
  4. void HardFault_Handler(void);
  5. void MemManage_Handler(void);
  6. void BusFault_Handler(void);
  7. void UsageFault_Handler(void);
  8. void SVC_Handler(void);
  9. void DebugMon_Handler(void);
  10. void PendSV_Handler(void);
  11. void SysTick_Handler(void);
  12. void TIM5_IRQHandler(void);
  13. void USART1_IRQHandler(void);
  14. #endif