Description Resource Path Location Type
'HAL_ADC_ConvCpltCallback' defined but not used [-Wunused-function] main.c /ADC/Core/Src line 72 C/C++ Problem
这是warning。
分别加了void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef* hadc)
{
tem=HAL_ADC_GetValue(&hadc1);
printf("%d",tem);
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_0, GPIO_PIN_SET);
}
和 HAL_ADC_Start_IT(&hadc1);
请问为什么进不了回调函数?
|