1 /** 2 ****************************************************************************** 3 * @file Project/STM32F4xx_StdPeriph_Templates/stm32f4xx_it.h 4 * @author MCD Application Team 5 * @version V1.4.0 6 * @date 04-August-2014 7 * @brief This file contains the headers of the interrupt handlers. 8 ****************************************************************************** 9 * @attention 10 * 11 * <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2> 12 * 13 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); 14 * You may not use this file except in compliance with the License. 15 * You may obtain a copy of the License at: 16 * 17 * http://www.st.com/software_license_agreement_liberty_v2 18 * 19 * Unless required by applicable law or agreed to in writing, software 20 * distributed under the License is distributed on an "AS IS" BASIS, 21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 22 * See the License for the specific language governing permissions and 23 * limitations under the License. 24 * 25 ****************************************************************************** 26 */ 27 28 /* Define to prevent recursive inclusion -------------------------------------*/ 29 #ifndef __STM32F4xx_IT_H 30 #define __STM32F4xx_IT_H 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 35 36 /* Includes ------------------------------------------------------------------*/ 37 #include "stm32f4xx.h" 38 39 /* Exported types ------------------------------------------------------------*/ 40 /* Exported constants --------------------------------------------------------*/ 41 /* Exported macro ------------------------------------------------------------*/ 42 /* Exported functions ------------------------------------------------------- */ 43 44 void NMI_Handler(void); 45 void HardFault_Handler(void); 46 void MemManage_Handler(void); 47 void BusFault_Handler(void); 48 void UsageFault_Handler(void); 49 void SVC_Handler(void); 50 void DebugMon_Handler(void); 51 void PendSV_Handler(void); 52 void SysTick_Handler(void); 53 54 #ifdef __cplusplus 55 } 56 #endif 57 58 #endif /* __STM32F4xx_IT_H */ 59 60 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 61