用Keil编译STM32工程出现下面错误
2024-09-29 来源:elecfans
Keil提示:*.axf: Error: L6967E: Entry point (0x08000000) points to a Thumb instruction but is not a valid Thumb code pointer.
解决办法:
1、菜单 options for target->linker->misc controls加入
--entry Reset_Handler --first __Vectors
2、options for target->asm->Include Paths 然后倒入startup_stm32f10x_hd.s或者startup_stm32f10x_md.s(说明:不同的MCU可能启动文件名不一样)
相关文章