| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /**
- ******************************************************************************
- * @file py32f0xx_it.c
- * @author MCU Application Team
- * @brief Interrupt Service Routines.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2023 Puya Semiconductor Co.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by Puya under BSD 3-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- ******************************************************************************
- * @attention
- *
- * <h2><center>© Copyright (c) 2016 STMicroelectronics.
- * All rights reserved.</center></h2>
- *
- * This software component is licensed by ST under BSD 3-Clause license,
- * the "License"; You may not use this file except in compliance with the
- * License. You may obtain a copy of the License at:
- * opensource.org/licenses/BSD-3-Clause
- *
- ******************************************************************************
- */
- /* Includes ------------------------------------------------------------------*/
- #include "main.h"
- #include "py32f0xx_it.h"
- /* Private includes ----------------------------------------------------------*/
- extern TIM_HandleTypeDef TimHandle;
- extern UART_HandleTypeDef DebugUartHandle;
- /* Private typedef -----------------------------------------------------------*/
- /* Private define ------------------------------------------------------------*/
- /* Private macro -------------------------------------------------------------*/
- /* Private variables ---------------------------------------------------------*/
- /* Private function prototypes -----------------------------------------------*/
- /* Private user code ---------------------------------------------------------*/
- /* External variables --------------------------------------------------------*/
- /******************************************************************************/
- /* Cortex-M0+ Processor Interruption and Exception Handlers */
- /******************************************************************************/
- /**
- * @brief This function handles Non maskable interrupt.
- */
- void NMI_Handler(void)
- {
- }
- /**
- * @brief This function handles Hard fault interrupt.
- */
- void HardFault_Handler(void)
- {
- while (1)
- {
- }
- }
- /**
- * @brief This function handles System service call via SWI instruction.
- */
- void SVC_Handler(void)
- {
- }
- /**
- * @brief This function handles Pendable request for system service.
- */
- void PendSV_Handler(void)
- {
- }
- /**
- * @brief This function handles System tick timer.
- */
- void SysTick_Handler(void)
- {
- HAL_IncTick();
- }
- /******************************************************************************/
- /* PY32F0xx Peripheral Interrupt Handlers */
- /* Add here the Interrupt Handlers for the used peripherals. */
- /* For the available peripheral interrupt handler names, */
- /* please refer to the startup file. */
- /******************************************************************************/
- /**
- * @brief This function handles TIM3 Interrupt .
- */
- void TIM3_IRQHandler(void)
- {
- HAL_TIM_IRQHandler(&TimHandle);
- }
- /**
- * @brief This function handles USART2 Interrupt .
- */
- void USART2_IRQHandler(void)
- {
- HAL_UART_IRQHandler(&DebugUartHandle);
- }
- /************************ (C) COPYRIGHT Puya *****END OF FILE******************/
|