stm32f10x_it.h
Go to the documentation of this file.00001 /** 00002 ****************************************************************************** 00003 * @file EEPROM_Emulation/inc/stm32f10x_it.h 00004 * @author MCD Application Team 00005 * @version V3.1.0 00006 * @date 07/27/2009 00007 * @brief This file contains the headers of the interrupt handlers. 00008 ****************************************************************************** 00009 * @copy 00010 * 00011 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 00012 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 00013 * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 00014 * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 00015 * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 00016 * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 00017 * 00018 * <h2><center>© COPYRIGHT 2009 STMicroelectronics</center></h2> 00019 */ 00020 00021 /* Define to prevent recursive inclusion -------------------------------------*/ 00022 #ifndef __STM32F10x_IT_H 00023 #define __STM32F10x_IT_H 00024 00025 /* Includes ------------------------------------------------------------------*/ 00026 #include "stm32f10x.h" 00027 00028 /* Exported types ------------------------------------------------------------*/ 00029 /* Exported constants --------------------------------------------------------*/ 00030 /* Exported macro ------------------------------------------------------------*/ 00031 /* Exported functions ------------------------------------------------------- */ 00032 00033 void NMI_Handler(void); 00034 void HardFault_Handler(void); 00035 void MemManage_Handler(void); 00036 void BusFault_Handler(void); 00037 void UsageFault_Handler(void); 00038 void SVC_Handler(void); 00039 void DebugMon_Handler(void); 00040 void PendSV_Handler(void); 00041 void SysTick_Handler(void); 00042 00043 #endif /* __STM32F10x_IT_H */ 00044 00045 /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/
|