STM32F0xx Standard Peripherals Firmware Library
|
STM32F0xx_StdPeriph_Examples/USART/USART_HyperTerminalInterrupt/stm32f0xx_it.h
Go to the documentation of this file.
00001 /** 00002 ****************************************************************************** 00003 * @file USART/USART_HyperTerminalInterrupt/stm32f0xx_it.c 00004 * @author MCD Application Team 00005 * @version V1.4.0 00006 * @date 24-July-2014 00007 * @brief This file contains the headers of the interrupt handlers. 00008 ****************************************************************************** 00009 * @attention 00010 * 00011 * <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2> 00012 * 00013 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); 00014 * You may not use this file except in compliance with the License. 00015 * You may obtain a copy of the License at: 00016 * 00017 * http://www.st.com/software_license_agreement_liberty_v2 00018 * 00019 * Unless required by applicable law or agreed to in writing, software 00020 * distributed under the License is distributed on an "AS IS" BASIS, 00021 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00022 * See the License for the specific language governing permissions and 00023 * limitations under the License. 00024 * 00025 ****************************************************************************** 00026 */ 00027 00028 /* Define to prevent recursive inclusion -------------------------------------*/ 00029 #ifndef __STM32F0XX_IT_H 00030 #define __STM32F0XX_IT_H 00031 00032 #ifdef __cplusplus 00033 extern "C" { 00034 #endif 00035 00036 /* Includes ------------------------------------------------------------------*/ 00037 #include "stm32f0xx.h" 00038 00039 /* Exported types ------------------------------------------------------------*/ 00040 /* Exported constants --------------------------------------------------------*/ 00041 /* Exported macro ------------------------------------------------------------*/ 00042 /* Exported functions ------------------------------------------------------- */ 00043 00044 void NMI_Handler(void); 00045 void HardFault_Handler(void); 00046 void SVC_Handler(void); 00047 void PendSV_Handler(void); 00048 void SysTick_Handler(void); 00049 #ifdef USE_STM320518_EVAL 00050 void USART1_IRQHandler(void); 00051 #else 00052 void USART2_IRQHandler(void); 00053 #endif /* USE_STM320518_EVAL */ 00054 00055 #ifdef __cplusplus 00056 } 00057 #endif 00058 00059 #endif /* __STM32F0XX_IT_H */ 00060 00061 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/