You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
5.6 KiB
173 lines
5.6 KiB
/**
|
|
******************************************************************************
|
|
* File Name : ADC.c
|
|
* Description : This file provides code for the configuration
|
|
* of the ADC instances.
|
|
******************************************************************************
|
|
** This notice applies to any and all portions of this file
|
|
* that are not between comment pairs USER CODE BEGIN and
|
|
* USER CODE END. Other portions of this file, whether
|
|
* inserted by the user or by software development tools
|
|
* are owned by their respective copyright owners.
|
|
*
|
|
* COPYRIGHT(c) 2017 STMicroelectronics
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "adc.h"
|
|
|
|
//#include "gpio.h"
|
|
#include "dma.h"
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
/* USER CODE END 0 */
|
|
|
|
ADC_HandleTypeDef hadc;
|
|
DMA_HandleTypeDef hdma_adc;
|
|
|
|
/* ADC init function */
|
|
void MX_ADC_Init(void)
|
|
{
|
|
ADC_ChannelConfTypeDef sConfig;
|
|
|
|
/**Configure the global features of the ADC (Clock, Resolution, Data Alignment and number of conversion)
|
|
*/
|
|
hadc.Instance = ADC1;
|
|
hadc.Init.OversamplingMode = DISABLE;
|
|
hadc.Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV2;
|
|
hadc.Init.Resolution = ADC_RESOLUTION_12B;
|
|
hadc.Init.SamplingTime = ADC_SAMPLETIME_12CYCLES_5;
|
|
hadc.Init.ScanConvMode = ADC_SCAN_DIRECTION_FORWARD;
|
|
hadc.Init.DataAlign = ADC_DATAALIGN_RIGHT;
|
|
hadc.Init.ContinuousConvMode = DISABLE;
|
|
hadc.Init.DiscontinuousConvMode = DISABLE;
|
|
hadc.Init.ExternalTrigConvEdge = ADC_EXTERNALTRIGCONVEDGE_RISING;
|
|
hadc.Init.ExternalTrigConv = ADC_EXTERNALTRIGCONV_T2_TRGO;
|
|
hadc.Init.DMAContinuousRequests = DISABLE;
|
|
hadc.Init.EOCSelection = ADC_EOC_SINGLE_CONV;
|
|
hadc.Init.Overrun = ADC_OVR_DATA_PRESERVED;
|
|
hadc.Init.LowPowerAutoWait = DISABLE;
|
|
hadc.Init.LowPowerFrequencyMode = DISABLE;
|
|
hadc.Init.LowPowerAutoPowerOff = DISABLE;
|
|
if (HAL_ADC_Init(&hadc) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
/**Configure for the selected ADC regular channel to be converted.
|
|
*/
|
|
sConfig.Channel = ADC_CHANNEL_1;
|
|
sConfig.Rank = ADC_RANK_CHANNEL_NUMBER;
|
|
if (HAL_ADC_ConfigChannel(&hadc, &sConfig) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
}
|
|
|
|
void HAL_ADC_MspInit(ADC_HandleTypeDef* adcHandle)
|
|
{
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
if(adcHandle->Instance==ADC1)
|
|
{
|
|
/* USER CODE BEGIN ADC1_MspInit 0 */
|
|
|
|
/* USER CODE END ADC1_MspInit 0 */
|
|
/* ADC1 clock enable */
|
|
__HAL_RCC_ADC1_CLK_ENABLE();
|
|
|
|
/**ADC GPIO Configuration
|
|
PA0 ------> ADC_IN0
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_1;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
/* ADC1 DMA Init */
|
|
/* ADC Init */
|
|
hdma_adc.Instance = DMA1_Channel1;
|
|
hdma_adc.Init.Request = DMA_REQUEST_0;
|
|
hdma_adc.Init.Direction = DMA_PERIPH_TO_MEMORY;
|
|
hdma_adc.Init.PeriphInc = DMA_PINC_DISABLE;
|
|
hdma_adc.Init.MemInc = DMA_MINC_ENABLE;
|
|
hdma_adc.Init.PeriphDataAlignment = DMA_PDATAALIGN_HALFWORD;
|
|
hdma_adc.Init.MemDataAlignment = DMA_MDATAALIGN_HALFWORD;
|
|
hdma_adc.Init.Mode = DMA_NORMAL;
|
|
hdma_adc.Init.Priority = DMA_PRIORITY_HIGH;
|
|
if (HAL_DMA_Init(&hdma_adc) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
__HAL_LINKDMA(adcHandle,DMA_Handle,hdma_adc);
|
|
|
|
/* USER CODE BEGIN ADC1_MspInit 1 */
|
|
|
|
/* USER CODE END ADC1_MspInit 1 */
|
|
}
|
|
}
|
|
|
|
void HAL_ADC_MspDeInit(ADC_HandleTypeDef* adcHandle)
|
|
{
|
|
|
|
if(adcHandle->Instance==ADC1)
|
|
{
|
|
/* USER CODE BEGIN ADC1_MspDeInit 0 */
|
|
|
|
/* USER CODE END ADC1_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_ADC1_CLK_DISABLE();
|
|
|
|
/**ADC GPIO Configuration
|
|
PA0 ------> ADC_IN0
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_1);
|
|
|
|
/* ADC1 DMA DeInit */
|
|
HAL_DMA_DeInit(adcHandle->DMA_Handle);
|
|
/* USER CODE BEGIN ADC1_MspDeInit 1 */
|
|
|
|
/* USER CODE END ADC1_MspDeInit 1 */
|
|
}
|
|
}
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
|
|