123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #ifndef __STM32F4xx_IT_H
- #define __STM32F4xx_IT_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- void NMI_Handler(void);
- void HardFault_Handler(void);
- void MemManage_Handler(void);
- void BusFault_Handler(void);
- void UsageFault_Handler(void);
- void SVC_Handler(void);
- void DebugMon_Handler(void);
- void PendSV_Handler(void);
- void SysTick_Handler(void);
- void USART1_IRQHandler(void);
- void USART2_IRQHandler(void);
- void UART4_IRQHandler(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|