L6218E:未定义符号ADC_GetConversionValue

时间:2019-05-24 11:21:51

标签: c stm32 keil

我正在尝试从Keil中的https://www.st.com/resource/en/application_note/dm00050879.pdf编译源代码。 我对Nucleo-f401Re的初始设置是使用STCubeMX。添加这些行时,在编译时会出现以下错误,

Error: L6218E: Undefined symbol ADC_GetConversionValue (referred from main.o). 
Error: L6218E: Undefined symbol ADC_GetFlagStatus (referred from main.o). 
Error: L6218E: Undefined symbol ADC_SoftwareStartConv (referred from main.o).

我是这里的初学者,如何解决它们?

我已经添加了这些行,仍然没有。

void ADC_SoftwareStartConv  (   ADC_TypeDef *   ADCx     ) ;    
FlagStatus ADC_GetFlagStatus(ADC_TypeDef *  ADCx,uint8_t ADC_FLAG);
uint16_t ADC_GetConversionValue (   ADC_TypeDef *   ADCx    )   ;

0 个答案:

没有答案