/** ****************************************************************************** * @file py32f0xx_hal_msp.c * @author MCU Application Team * @brief This file provides code for the MSP Initialization * and de-Initialization codes. ****************************************************************************** * @attention * *

© Copyright (c) Puya Semiconductor Co. * All rights reserved.

* *

© Copyright (c) 2016 STMicroelectronics. * All rights reserved.

* * 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 "py32f0xx_hal.h" /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/ /* External functions --------------------------------------------------------*/ /** * @brief Configure the Flash prefetch and the Instruction cache, * the time base source, NVIC and any required global low level hardware * by calling the HAL_MspInit() callback function from HAL_Init() * */ void HAL_MspInit(void) { } void HAL_ADC_MspInit(ADC_HandleTypeDef *hadc) { GPIO_InitTypeDef GPIO_InitStruct; __HAL_RCC_GPIOA_CLK_ENABLE(); /* Enable GPIOA clock */ __HAL_RCC_ADC_CLK_ENABLE(); /* Enable ADC clock */ /* ADC channel: PA0 */ GPIO_InitStruct.Pin = GPIO_PIN_0; GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); HAL_NVIC_SetPriority(ADC_COMP_IRQn, 0, 0); HAL_NVIC_EnableIRQ(ADC_COMP_IRQn); } void HAL_ADC_MspDeInit(ADC_HandleTypeDef *hadc) { __HAL_RCC_ADC_FORCE_RESET(); __HAL_RCC_ADC_RELEASE_RESET(); HAL_GPIO_DeInit(GPIOA, GPIO_PIN_0); } /************************ (C) COPYRIGHT Puya *****END OF FILE******************/