/*! * \file adc-board.c * * \brief Target board ADC driver implementation * * \copyright Revised BSD License, see section \ref LICENSE. * * \code * ______ _ * / _____) _ | | * ( (____ _____ ____ _| |_ _____ ____| |__ * \____ \| ___ | (_ _) ___ |/ ___) _ \ * _____) ) ____| | | || |_| ____( (___| | | | * (______/|_____)_|_|_| \__)_____)\____)_| |_| * (C)2013-2017 Semtech * * \endcode * * \author Miguel Luis ( Semtech ) * * \author Gregory Cristian ( Semtech ) */ #include "stm32l1xx.h" #include "board-config.h" #include "adc-board.h" ADC_HandleTypeDef AdcHandle; void AdcMcuInit( Adc_t *obj, PinNames adcInput ) { AdcHandle.Instance = ( ADC_TypeDef* )ADC1_BASE; __HAL_RCC_ADC1_CLK_ENABLE( ); HAL_ADC_DeInit( &AdcHandle ); if( adcInput != NC ) { GpioInit( &obj->AdcInput, adcInput, PIN_ANALOGIC, PIN_PUSH_PULL, PIN_NO_PULL, 0 ); } } void AdcMcuConfig( void ) { // Configure ADC AdcHandle.Init.Resolution = ADC_RESOLUTION_12B; AdcHandle.Init.DataAlign = ADC_DATAALIGN_RIGHT; AdcHandle.Init.ContinuousConvMode = DISABLE; AdcHandle.Init.DiscontinuousConvMode = DISABLE; AdcHandle.Init.ExternalTrigConvEdge = ADC_EXTERNALTRIGCONVEDGE_NONE; AdcHandle.Init.ExternalTrigConv = ADC_EXTERNALTRIGCONV_T6_TRGO; AdcHandle.Init.DMAContinuousRequests = DISABLE; AdcHandle.Init.EOCSelection = ADC_EOC_SINGLE_CONV; AdcHandle.Init.NbrOfConversion = 1; AdcHandle.Init.LowPowerAutoWait = DISABLE; AdcHandle.Init.LowPowerAutoPowerOff = DISABLE; HAL_ADC_Init( &AdcHandle ); } uint16_t AdcMcuReadChannel( Adc_t *obj, uint32_t channel ) { ADC_ChannelConfTypeDef adcConf = { 0 }; uint16_t adcData = 0; // Enable HSI __HAL_RCC_HSI_ENABLE( ); // Wait till HSI is ready while( __HAL_RCC_GET_FLAG( RCC_FLAG_HSIRDY ) == RESET ) { } __HAL_RCC_ADC1_CLK_ENABLE( ); adcConf.Channel = channel; adcConf.Rank = ADC_REGULAR_RANK_1; adcConf.SamplingTime = ADC_SAMPLETIME_192CYCLES; HAL_ADC_ConfigChannel( &AdcHandle, &adcConf ); // Enable ADC1 if( ADC_Enable( &AdcHandle ) == HAL_OK ) { // Start ADC Software Conversion HAL_ADC_Start( &AdcHandle ); HAL_ADC_PollForConversion( &AdcHandle, HAL_MAX_DELAY ); adcData = HAL_ADC_GetValue( &AdcHandle ); } ADC_ConversionStop_Disable( &AdcHandle ); if( ( adcConf.Channel == ADC_CHANNEL_TEMPSENSOR ) || ( adcConf.Channel == ADC_CHANNEL_VREFINT ) ) { HAL_ADC_DeInit( &AdcHandle ); } __HAL_RCC_ADC1_CLK_DISABLE( ); // Disable HSI __HAL_RCC_HSI_DISABLE( ); return adcData; }