1.CUBEMAX模块
2.代码部分
double get_vol(ADC_HandleTypeDef *hadc)
{
uint adc;
HAL_ADC_Start(hadc);
adc=HAL_ADC_GetValue(hadc);
return adc*3.3/4096;
}
get_vol(&hadc2)
double get_vol(ADC_HandleTypeDef *hadc)
{
uint adc;
HAL_ADC_Start(hadc);
adc=HAL_ADC_GetValue(hadc);
return adc*3.3/4096;
}
get_vol(&hadc2)