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.
186 lines
5.5 KiB
186 lines
5.5 KiB
/* USER CODE BEGIN Header */ |
|
/** |
|
****************************************************************************** |
|
* @file adc.c |
|
* @brief This file provides code for the configuration |
|
* of the ADC instances. |
|
****************************************************************************** |
|
* @attention |
|
* |
|
* Copyright (c) 2023 STMicroelectronics. |
|
* All rights reserved. |
|
* |
|
* This software is licensed under terms that can be found in the LICENSE file |
|
* in the root directory of this software component. |
|
* If no LICENSE file comes with this software, it is provided AS-IS. |
|
* |
|
****************************************************************************** |
|
*/ |
|
/* USER CODE END Header */ |
|
/* Includes ------------------------------------------------------------------*/ |
|
#include "adc.h" |
|
|
|
/* USER CODE BEGIN 0 */ |
|
const uint16_t *ADC_VREFIN_CAL_3V3_30C = (const uint16_t *) 0x1fff7a2a; |
|
const uint16_t *ADC_TEMP_3V3_30C = (const uint16_t *) 0x1fff7a2c; |
|
const uint16_t *ADC_TEMP_3V3_110C = (const uint16_t *) 0x1fff7a2e; |
|
|
|
uint16_t padc[ADC_CHANS]; |
|
/* USER CODE END 0 */ |
|
|
|
ADC_HandleTypeDef hadc1; |
|
DMA_HandleTypeDef hdma_adc1; |
|
|
|
/* ADC1 init function */ |
|
void MX_ADC1_Init(void) |
|
{ |
|
|
|
/* USER CODE BEGIN ADC1_Init 0 */ |
|
|
|
/* USER CODE END ADC1_Init 0 */ |
|
|
|
ADC_ChannelConfTypeDef sConfig = {0}; |
|
|
|
/* USER CODE BEGIN ADC1_Init 1 */ |
|
|
|
/* USER CODE END ADC1_Init 1 */ |
|
|
|
/** Configure the global features of the ADC (Clock, Resolution, Data Alignment and number of conversion) |
|
*/ |
|
hadc1.Instance = ADC1; |
|
hadc1.Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV2; |
|
hadc1.Init.Resolution = ADC_RESOLUTION_12B; |
|
hadc1.Init.ScanConvMode = ENABLE; |
|
hadc1.Init.ContinuousConvMode = ENABLE; |
|
hadc1.Init.DiscontinuousConvMode = DISABLE; |
|
hadc1.Init.ExternalTrigConvEdge = ADC_EXTERNALTRIGCONVEDGE_NONE; |
|
hadc1.Init.ExternalTrigConv = ADC_SOFTWARE_START; |
|
hadc1.Init.DataAlign = ADC_DATAALIGN_RIGHT; |
|
hadc1.Init.NbrOfConversion = 3; |
|
hadc1.Init.DMAContinuousRequests = ENABLE; |
|
hadc1.Init.EOCSelection = ADC_EOC_SEQ_CONV; |
|
if (HAL_ADC_Init(&hadc1) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
|
|
/** Configure for the selected ADC regular channel its corresponding rank in the sequencer and its sample time. |
|
*/ |
|
sConfig.Channel = ADC_CHANNEL_0; |
|
sConfig.Rank = 1; |
|
sConfig.SamplingTime = ADC_SAMPLETIME_480CYCLES; |
|
if (HAL_ADC_ConfigChannel(&hadc1, &sConfig) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
|
|
/** Configure for the selected ADC regular channel its corresponding rank in the sequencer and its sample time. |
|
*/ |
|
sConfig.Channel = ADC_CHANNEL_VBAT; |
|
sConfig.Rank = 2; |
|
if (HAL_ADC_ConfigChannel(&hadc1, &sConfig) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
|
|
/** Configure for the selected ADC regular channel its corresponding rank in the sequencer and its sample time. |
|
*/ |
|
sConfig.Channel = ADC_CHANNEL_VREFINT; |
|
sConfig.Rank = 3; |
|
if (HAL_ADC_ConfigChannel(&hadc1, &sConfig) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
/* USER CODE BEGIN ADC1_Init 2 */ |
|
|
|
/* USER CODE END ADC1_Init 2 */ |
|
|
|
} |
|
|
|
void HAL_ADC_MspInit(ADC_HandleTypeDef* adcHandle) |
|
{ |
|
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0}; |
|
if(adcHandle->Instance==ADC1) |
|
{ |
|
/* USER CODE BEGIN ADC1_MspInit 0 */ |
|
|
|
/* USER CODE END ADC1_MspInit 0 */ |
|
/* ADC1 clock enable */ |
|
__HAL_RCC_ADC1_CLK_ENABLE(); |
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE(); |
|
/**ADC1 GPIO Configuration |
|
PA0-WKUP ------> ADC1_IN0 |
|
*/ |
|
GPIO_InitStruct.Pin = SOIL_Pin; |
|
GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; |
|
GPIO_InitStruct.Pull = GPIO_NOPULL; |
|
HAL_GPIO_Init(SOIL_GPIO_Port, &GPIO_InitStruct); |
|
|
|
/* ADC1 DMA Init */ |
|
/* ADC1 Init */ |
|
hdma_adc1.Instance = DMA2_Stream0; |
|
hdma_adc1.Init.Channel = DMA_CHANNEL_0; |
|
hdma_adc1.Init.Direction = DMA_PERIPH_TO_MEMORY; |
|
hdma_adc1.Init.PeriphInc = DMA_PINC_DISABLE; |
|
hdma_adc1.Init.MemInc = DMA_MINC_ENABLE; |
|
hdma_adc1.Init.PeriphDataAlignment = DMA_PDATAALIGN_HALFWORD; |
|
hdma_adc1.Init.MemDataAlignment = DMA_MDATAALIGN_HALFWORD; |
|
hdma_adc1.Init.Mode = DMA_CIRCULAR; |
|
hdma_adc1.Init.Priority = DMA_PRIORITY_LOW; |
|
hdma_adc1.Init.FIFOMode = DMA_FIFOMODE_ENABLE; |
|
hdma_adc1.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL; |
|
hdma_adc1.Init.MemBurst = DMA_MBURST_SINGLE; |
|
hdma_adc1.Init.PeriphBurst = DMA_PBURST_SINGLE; |
|
if (HAL_DMA_Init(&hdma_adc1) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
|
|
__HAL_LINKDMA(adcHandle,DMA_Handle,hdma_adc1); |
|
|
|
/* 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(); |
|
|
|
/**ADC1 GPIO Configuration |
|
PA0-WKUP ------> ADC1_IN0 |
|
*/ |
|
HAL_GPIO_DeInit(SOIL_GPIO_Port, SOIL_Pin); |
|
|
|
/* 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 */ |
|
int32_t adc_apply_refint(uint16_t sample) |
|
{ |
|
int32_t x = sample; |
|
|
|
#if (0) /* FIXME: VREFINT is always reading about half of the calibration value! */ |
|
x *= *ADC_VREFIN_CAL_3V3_30C; |
|
/* do not allow a divide-by-zero */ |
|
x /= padc[adc_vrefint] ? padc[adc_vrefint] : *ADC_VREFIN_CAL_3V3_30C; |
|
#endif /* FIXME */ |
|
|
|
return x; |
|
} |
|
/* USER CODE END 1 */
|
|
|