stm8l15x_it.h 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /**
  2. ******************************************************************************
  3. * @file Project/STM8L15x_StdPeriph_Template/stm8l15x_it.h
  4. * @author MCD Application Team
  5. * @version V1.6.1
  6. * @date 30-September-2014
  7. * @brief This file contains the headers of the interrupt handlers.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; 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. /* Define to prevent recursive inclusion -------------------------------------*/
  28. #ifndef __STM8L15x_IT_H
  29. #define __STM8L15x_IT_H
  30. /* Includes ------------------------------------------------------------------*/
  31. #include "stm8l15x.h"
  32. /* Exported types ------------------------------------------------------------*/
  33. /* Exported constants --------------------------------------------------------*/
  34. /* Exported macro ------------------------------------------------------------*/
  35. /* Exported functions ------------------------------------------------------- */
  36. #ifdef _COSMIC_
  37. void _stext(void); /* RESET startup routine */
  38. INTERRUPT void NonHandledInterrupt(void);
  39. #endif /* _COSMIC_ */
  40. #ifndef _RAISONANCE_
  41. INTERRUPT void TRAP_IRQHandler(void); /* TRAP */
  42. INTERRUPT void FLASH_IRQHandler(void); /* FLASH EOP/PG_DIS */
  43. INTERRUPT void DMA1_CHANNEL0_1_IRQHandler(void); /* DMA1 Channel0/1*/
  44. INTERRUPT void DMA1_CHANNEL2_3_IRQHandler(void); /*DMA1 Channel2/3*/
  45. INTERRUPT void RTC_CSSLSE_IRQHandler(void); /* RTC /CSS_LSE */
  46. INTERRUPT void EXTIE_F_PVD_IRQHandler(void); /*EXTI PORTE/EXTI PORTF/PVD*/
  47. INTERRUPT void EXTIB_G_IRQHandler(void); /* EXTI PORTB / EXTI PORTG */
  48. INTERRUPT void EXTID_H_IRQHandler(void); /* EXTI PORTD / EXTI PORTH*/
  49. INTERRUPT void EXTI0_IRQHandler(void); /* EXTI PIN0 */
  50. INTERRUPT void EXTI1_IRQHandler(void); /* EXTI PIN1 */
  51. INTERRUPT void EXTI2_IRQHandler(void); /* EXTI PIN2 */
  52. INTERRUPT void EXTI3_IRQHandler(void); /* EXTI PIN3 */
  53. INTERRUPT void EXTI4_IRQHandler(void); /* EXTI PIN4 */
  54. INTERRUPT void EXTI5_IRQHandler(void); /* EXTI PIN5 */
  55. INTERRUPT void EXTI6_IRQHandler(void); /* EXTI PIN6 */
  56. INTERRUPT void EXTI7_IRQHandler(void); /* EXTI PIN7 */
  57. INTERRUPT void LCD_AES_IRQHandler(void); /* LCD /AES */
  58. INTERRUPT void SWITCH_CSS_BREAK_DAC_IRQHandler(void); /* Switch CLK/CSS/TIM1 Break/DAC */
  59. INTERRUPT void ADC1_COMP_IRQHandler(void); /*ADC1/COMP*/
  60. INTERRUPT void TIM2_UPD_OVF_TRG_BRK_USART2_TX_IRQHandler(void); /* TIM2 UPD/OVF/TRG/BRK / USART2 TX */
  61. INTERRUPT void TIM2_CC_USART2_RX_IRQHandler(void); /* TIM2 CAP / USART2 RX */
  62. INTERRUPT void TIM3_UPD_OVF_TRG_BRK_USART3_TX_IRQHandler(void); /* TIM3 UPD/OVF/TRG/BRK /USART3 TX*/
  63. INTERRUPT void TIM3_CC_USART3_RX_IRQHandler(void); /* TIM3 CAP/ USART3 RX */
  64. INTERRUPT void TIM1_UPD_OVF_TRG_COM_IRQHandler(void);/* TIM1 UPD/OVF/TRG/COM */
  65. INTERRUPT void TIM1_CC_IRQHandler(void);/* TIM1 CAP*/
  66. INTERRUPT void TIM4_UPD_OVF_TRG_IRQHandler(void); /* TIM4 UPD/OVF/TRI */
  67. INTERRUPT void SPI1_IRQHandler(void); /* SPI1 */
  68. INTERRUPT void USART1_TX_TIM5_UPD_OVF_TRG_BRK_IRQHandler(void); /* USART1 TX / TIM5 UPD/OVF/TRG/BRK */
  69. INTERRUPT void USART1_RX_TIM5_CC_IRQHandler(void); /* USART1 RX / TIM5 CAP */
  70. INTERRUPT void I2C1_SPI2_IRQHandler(void); /* I2C1 / SPI2 */
  71. #endif /* _RAISONANCE_ */
  72. #endif /* __STM8L15x_IT_H */
  73. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/