MDK keil5 error: L6235E: More than one section matches selector---STM32启动

MDK编译程序是遇到报错:
F103CBT6_Test\F103CBT6_Test.sct(7): error: L6235E: More than one section matches selector - cannot all be FIRST/LAST.

问题原因:在编译文档中包含了多个***.s启动文件。具体说明可以参考官方解释:https://developer.arm.com/documentation/ka002348/latest
MDK keil5 error: L6235E: More than one section matches selector---STM32启动_第1张图片
解决方法:删除多余的***.s启动文件。有两种方式:

  1. 直接删除工程中的***.s文件
  2. 删除manage run-time environment中自动添加startup选项
    MDK keil5 error: L6235E: More than one section matches selector---STM32启动_第2张图片

MDK keil5 error: L6235E: More than one section matches selector---STM32启动_第3张图片

你可能感兴趣的:(STM32使用,stm32)