Error: L6218E: Undefined symbol SystemInit (referred from startup_stm32f10x_hd.o)

出现的问题在startup_stm32f10x_hd.o也就是startup_stm32f10x_hd.s启动文件中,关于启动文件的介绍参考:http://blog.csdn.net/zhangjikuan/article/details/46619817

解决方法:

屏蔽掉这三条语句

;IMPORT  SystemInit
;LDR     R0, =SystemInit
;BLX     R0 

注意汇编语言中的屏蔽是分号不是//

你可能感兴趣的:(error,undefined,stm32,mdk,SystemInit,L6218E)