| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /**
- ******************************************************************************
- * @file py32f0xx_hal_msp.c
- * @author MCU Application Team
- * @brief This file provides code for the MSP Initialization
- * and de-Initialization codes.
- ******************************************************************************
- * @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"
- /* Private typedef -----------------------------------------------------------*/
- /* Private define ------------------------------------------------------------*/
- /* Private macro -------------------------------------------------------------*/
- /* Private variables ---------------------------------------------------------*/
- /* Private function prototypes -----------------------------------------------*/
- /* External functions --------------------------------------------------------*/
- /**
- * @brief Initialize global MSP
- */
- void HAL_MspInit(void)
- {
- }
- /**
- * @brief Initialize TIM-related MSP
- */
- void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim)
- {
- /* Enable TIM3 clock */
- __HAL_RCC_TIM3_CLK_ENABLE();
-
- /* Set interrupt priority */
- HAL_NVIC_SetPriority(TIM3_IRQn, 1, 0);
- /* Enable TIM3 interrupt */
- HAL_NVIC_EnableIRQ(TIM3_IRQn);
- }
- /************************ (C) COPYRIGHT Puya *****END OF FILE******************/
|