123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 |
- /**
- ******************************************************************************
- * @file stm8s_it.c
- * @author MCD Application Team
- * @version V2.3.0
- * @date 16-June-2017
- * @brief Main Interrupt Service Routines.
- * This file provides template for all peripherals interrupt service
- * routine.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2>
- *
- * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
- * You may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.st.com/software_license_agreement_liberty_v2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************
- */
- /* Includes ------------------------------------------------------------------*/
- #include "stm8s_it.h"
- /** @addtogroup Template_Project
- * @{
- */
- /* Private typedef -----------------------------------------------------------*/
- /* Private define ------------------------------------------------------------*/
- /* Private macro -------------------------------------------------------------*/
- /* Private variables ---------------------------------------------------------*/
- /* Private function prototypes -----------------------------------------------*/
- /* Private functions ---------------------------------------------------------*/
- /* Public functions ----------------------------------------------------------*/
- #ifdef _COSMIC_
- /**
- * @brief Dummy Interrupt routine
- * @par Parameters:
- * None
- * @retval
- * None
- */
- INTERRUPT_HANDLER(NonHandledInterrupt, 25)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /*_COSMIC_*/
- /**
- * @brief TRAP Interrupt routine
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER_TRAP(TRAP_IRQHandler)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Top Level Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TLI_IRQHandler, 0)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Auto Wake Up Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(AWU_IRQHandler, 1)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Clock Controller Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(CLK_IRQHandler, 2)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief External Interrupt PORTA Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EXTI_PORTA_IRQHandler, 3)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief External Interrupt PORTB Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EXTI_PORTB_IRQHandler, 4)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief External Interrupt PORTC Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EXTI_PORTC_IRQHandler, 5)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief External Interrupt PORTD Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EXTI_PORTD_IRQHandler, 6)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief External Interrupt PORTE Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EXTI_PORTE_IRQHandler, 7)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #if defined (STM8S903) || defined (STM8AF622x)
- /**
- * @brief External Interrupt PORTF Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EXTI_PORTF_IRQHandler, 8)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S903) || (STM8AF622x) */
- #if defined (STM8S208) || defined (STM8AF52Ax)
- /**
- * @brief CAN RX Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(CAN_RX_IRQHandler, 8)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief CAN TX Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(CAN_TX_IRQHandler, 9)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S208) || (STM8AF52Ax) */
- /**
- * @brief SPI Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(SPI_IRQHandler, 10)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Timer1 Update/Overflow/Trigger/Break Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM1_UPD_OVF_TRG_BRK_IRQHandler, 11)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Timer1 Capture/Compare Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM1_CAP_COM_IRQHandler, 12)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #if defined (STM8S903) || defined (STM8AF622x)
- /**
- * @brief Timer5 Update/Overflow/Break/Trigger Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM5_UPD_OVF_BRK_TRG_IRQHandler, 13)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Timer5 Capture/Compare Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM5_CAP_COM_IRQHandler, 14)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #else /* (STM8S208) || (STM8S207) || (STM8S105) || (STM8S103) || (STM8AF62Ax) || (STM8AF52Ax) || (STM8AF626x) */
- /**
- * @brief Timer2 Update/Overflow/Break Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM2_UPD_OVF_BRK_IRQHandler, 13)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Timer2 Capture/Compare Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM2_CAP_COM_IRQHandler, 14)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S903) || (STM8AF622x) */
- #if defined (STM8S208) || defined(STM8S207) || defined(STM8S007) || defined(STM8S105) || \
- defined(STM8S005) || defined (STM8AF62Ax) || defined (STM8AF52Ax) || defined (STM8AF626x)
- /**
- * @brief Timer3 Update/Overflow/Break Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM3_UPD_OVF_BRK_IRQHandler, 15)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief Timer3 Capture/Compare Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM3_CAP_COM_IRQHandler, 16)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S208) || (STM8S207) || (STM8S105) || (STM8AF62Ax) || (STM8AF52Ax) || (STM8AF626x) */
- #if defined (STM8S208) || defined(STM8S207) || defined(STM8S007) || defined(STM8S103) || \
- defined (STM8S003) || defined(STM8S001) || defined (STM8AF62Ax) || defined (STM8AF52Ax) || defined (STM8S903)
- /**
- * @brief UART1 TX Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART1_TX_IRQHandler, 17)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief UART1 RX Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART1_RX_IRQHandler, 18)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S208) || (STM8S207) || (STM8S103) || (STM8S001) || (STM8S903) || (STM8AF62Ax) || (STM8AF52Ax) */
- #if defined(STM8AF622x)
- /**
- * @brief UART4 TX Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART4_TX_IRQHandler, 17)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief UART4 RX Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART4_RX_IRQHandler, 18)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8AF622x) */
- /**
- * @brief I2C Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(I2C_IRQHandler, 19)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #if defined(STM8S105) || defined(STM8S005) || defined (STM8AF626x)
- /**
- * @brief UART2 TX interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART2_TX_IRQHandler, 20)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief UART2 RX interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART2_RX_IRQHandler, 21)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S105) || (STM8AF626x) */
- #if defined(STM8S207) || defined(STM8S007) || defined(STM8S208) || defined (STM8AF52Ax) || defined (STM8AF62Ax)
- /**
- * @brief UART3 TX interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART3_TX_IRQHandler, 20)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @brief UART3 RX interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(UART3_RX_IRQHandler, 21)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S208) || (STM8S207) || (STM8AF52Ax) || (STM8AF62Ax) */
- #if defined(STM8S207) || defined(STM8S007) || defined(STM8S208) || defined (STM8AF52Ax) || defined (STM8AF62Ax)
- /**
- * @brief ADC2 interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(ADC2_IRQHandler, 22)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #else /* STM8S105 or STM8S103 or STM8S903 or STM8AF626x or STM8AF622x */
- /**
- * @brief ADC1 interrupt routine.
- * @par Parameters:
- * None
- * @retval
- * None
- */
- INTERRUPT_HANDLER(ADC1_IRQHandler, 22)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif /* (STM8S208) || (STM8S207) || (STM8AF52Ax) || (STM8AF62Ax) */
- #if defined (STM8S903) || defined (STM8AF622x)
- /**
- * @brief Timer6 Update/Overflow/Trigger Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(TIM6_UPD_OVF_TRG_IRQHandler, 23)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #else /* STM8S208 or STM8S207 or STM8S105 or STM8S103 or STM8AF52Ax or STM8AF62Ax or STM8AF626x */
- /**
- * @brief Timer4 Update/Overflow Interrupt routine.
- * @param None
- * @retval None
- */
- #ifndef USE_RTOS
- INTERRUPT_HANDLER(TIM4_UPD_OVF_IRQHandler, 23)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- #endif // USE_RTOS
- #endif /* (STM8S903) || (STM8AF622x)*/
- /**
- * @brief Eeprom EEC Interrupt routine.
- * @param None
- * @retval None
- */
- INTERRUPT_HANDLER(EEPROM_EEC_IRQHandler, 24)
- {
- /* In order to detect unexpected events during development,
- it is recommended to set a breakpoint on the following instruction.
- */
- }
- /**
- * @}
- */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|