[讨论] 有关STM32F0ADC库函数中Timeout用法

hjl240   2015-1-21 15:31 楼主
我用STM32Cubemx生成keil项目,用到了ADC,于是查看stm32f0xx_hal_adc.c.中的HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef* hadc, uint32_t Timeout)函数,不明白Timeout参数是干什么用的,,Timeout我试过用不同的值,但是效果都一样,没什么区别

该函数如下:
  1. /**
  2.   * @brief  Wait for regular group conversion to be completed.
  3.   * @param  hadc: ADC handle
  4.   * @param  Timeout: Timeout value in millisecond.
  5.   * @retval HAL status
  6.   */
  7. HAL_StatusTypeDef HAL_ADC_PollForConversion(ADC_HandleTypeDef* hadc, uint32_t Timeout)
  8. {
  9.   uint32_t tickstart;
  10.   uint32_t tmp_Flag_EOC;

  11.   /* Check the parameters */
  12.   assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance));

  13.   /* If end of conversion selected to end of sequence */
  14.   if (hadc->Init.EOCSelection == EOC_SEQ_CONV)
  15.   {
  16.     tmp_Flag_EOC = ADC_FLAG_EOS;
  17.   }
  18.   /* If end of conversion selected to end of each conversion */
  19.   else /* EOC_SINGLE_CONV */
  20.   {
  21.     tmp_Flag_EOC = (ADC_FLAG_EOC | ADC_FLAG_EOS);
  22.   }
  23.    
  24.   /* Get timeout */
  25.   tickstart = HAL_GetTick();  
  26.      
  27.   /* Wait until End of Conversion flag is raised */
  28.   while(HAL_IS_BIT_CLR(hadc->Instance->ISR, tmp_Flag_EOC))
  29.   {
  30.     /* Check if timeout is disabled (set to infinite wait) */
  31.     if(Timeout != HAL_MAX_DELAY)
  32.     {
  33.       if((Timeout == 0) || ((HAL_GetTick()-tickstart) > Timeout))
  34.       {
  35.         /* Update ADC state machine to timeout */
  36.         hadc->State = HAL_ADC_STATE_TIMEOUT;
  37.         
  38.         /* Process unlocked */
  39.         __HAL_UNLOCK(hadc);
  40.         
  41.         return HAL_ERROR;
  42.       }
  43.     }
  44.   }
  45.   
  46.   /* Clear end of conversion flag of regular group if low power feature       */
  47.   /* "LowPowerAutoWait " is disabled, to not interfere with this feature      */
  48.   /* until data register is read using function HAL_ADC_GetValue().           */
  49.   if (hadc->Init.LowPowerAutoWait == DISABLE)
  50.   {
  51.     /* Clear regular group conversion flag */
  52.     __HAL_ADC_CLEAR_FLAG(hadc, (ADC_FLAG_EOC | ADC_FLAG_EOS));
  53.   }
  54.   
  55.   /* Update state machine on conversion status if not in error state */
  56.   if(hadc->State != HAL_ADC_STATE_ERROR)
  57.   {
  58.     /* Change ADC state */
  59.     hadc->State = HAL_ADC_STATE_EOC_REG;
  60.   }
  61.   
  62.   /* Return ADC state */
  63.   return HAL_OK;
  64. }
请问Timeout有什么用?




欢迎关注:JL单片机

回复评论 (2)

设置的超时时间!
点赞  2015-1-21 19:34
这个是用来设置超时的吧。
点赞  2015-1-23 10:07
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复