2022年(27)
分类: 嵌入式
2022-05-03 15:27:13
原文地址:用Keil编译STM32工程出现下面错误 作者:我本痴情
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可能启动文件名不一样)