PY32F030_Air_BPC/src/py32f0xx_hal_msp.c
Yilin Sun 433dee949b
Initial commit.
Signed-off-by: Yilin Sun <imi415@imi.moe>
2023-11-17 10:12:42 +08:00

80 lines
2.9 KiB
C

/**
******************************************************************************
* @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>&copy; Copyright (c) Puya Semiconductor Co.
* All rights reserved.</center></h2>
*
* <h2><center>&copy; 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 --------------------------------------------------------*/
void HAL_MspInit(void) {
__HAL_RCC_SYSCFG_CLK_ENABLE();
__HAL_RCC_PWR_CLK_ENABLE();
}
void HAL_UART_MspInit(UART_HandleTypeDef *huart) {
if (huart == &huart1) {
__HAL_RCC_GPIOA_CLK_ENABLE();
GPIO_InitTypeDef GPIO_InitStruct = {
.Pin = BOARD_UART_TX_PIN | BOARD_UART_RX_PIN,
.Mode = GPIO_MODE_AF_PP,
.Pull = GPIO_NOPULL,
.Speed = GPIO_SPEED_FREQ_LOW,
.Alternate = GPIO_AF1_USART1,
};
HAL_GPIO_Init(BOARD_UART_TX_PORT, &GPIO_InitStruct);
__HAL_RCC_USART1_CLK_ENABLE();
HAL_NVIC_SetPriority(USART1_IRQn, 4, 0);
HAL_NVIC_EnableIRQ(USART1_IRQn);
}
}
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim) {
if (htim->Instance == TIM14) {
__HAL_RCC_GPIOA_CLK_ENABLE();
GPIO_InitTypeDef GPIO_InitStruct = {
.Pin = BOARD_BPC_NTCO_PIN,
.Mode = GPIO_MODE_AF_PP,
.Pull = GPIO_NOPULL,
.Speed = GPIO_SPEED_FREQ_LOW,
.Alternate = GPIO_AF4_TIM14,
};
HAL_GPIO_Init(BOARD_BPC_NTCO_PORT, &GPIO_InitStruct);
__HAL_RCC_TIM14_CLK_ENABLE();
HAL_NVIC_SetPriority(TIM14_IRQn, 3, 0);
HAL_NVIC_EnableIRQ(TIM14_IRQn);
}
}
/************************ (C) COPYRIGHT Puya *****END OF FILE******************/