..\OBJ\LED.axf: Error: L6218E: Undefined symbol TIM_TimeBaseInit (referred from main.o).
时间: 2023-11-12 18:31:14 浏览: 158
obj.rar_obj_obj C++_obj 加载_obj文件_site:www.pudn.com
5星 · 资源好评率100%
This error message indicates that the linker was unable to find a definition for the symbol "TIM_TimeBaseInit" that is referenced in the "main.o" object file.
The most likely cause of this error is that the necessary library or source file containing the implementation of "TIM_TimeBaseInit" was not included in the project or was not linked properly.
To resolve this error, ensure that the necessary library or source file containing the implementation of "TIM_TimeBaseInit" is included in the project and properly linked during the build process.
阅读全文