当前位置: 首页 > news >正文

STM32F103ZETx_FLASH.ld 解析

STM32F103ZETx_FLASH.ld 是一个链接脚本文件,用于描述 STM32F103ZETx 微控制器的内存布局和链接过程。

/*
******************************************************************************
****  File        : LinkerScript.ld
**
**  Author		: Auto-generated by System Workbench for STM32
**
**  Abstract    : Linker script for STM32F103ZETx series
**                512Kbytes FLASH and 64Kbytes RAM
**
**                Set heap size, stack size and stack location according
**                to application requirements.
**
**                Set memory bank area and size if external memory is used.
**
**  Target      : STMicroelectronics STM32
**
**  Distribution: The file is distributed “as is,” without any warranty
**                of any kind.
**
*****************************************************************************
** @attention
**
** <h2><center>&copy; COPYRIGHT(c) 2019 STMicroelectronics</center></h2>
**
** Redistribution and use in source and binary forms, with or without modification,
** are permitted provided that the following conditions are met:
**   1. Redistributions of source code must retain the above copyright notice,
**      this list of conditions and the following disclaimer.
**   2. Redistributions in binary form must reproduce the above copyright notice,
**      this list of conditions and the following disclaimer in the documentation
**      and/or other materials provided with the distribution.
**   3. Neither the name of STMicroelectronics nor the names of its contributors
**      may be used to endorse or promote products derived from this software
**      without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
*****************************************************************************
*//* Entry Point */
ENTRY(Reset_Handler)/* Highest address of the user mode stack */
_estack = 0x20010000;    /* end of RAM */
/* Generate a link error if heap and stack don't fit into RAM */
_Min_Heap_Size = 0x200;      /* required amount of heap  */
_Min_Stack_Size = 0x400; /* required amount of stack *//* Specify the memory areas */
MEMORY
{
RAM (xrw)      : ORIGIN = 0x20000000, LENGTH = 64K
FLASH (rx)      : ORIGIN = 0x8000000, LENGTH = 512K
}/* Define output sections */
SECTIONS
{/* The startup code goes first into FLASH */.isr_vector :{. = ALIGN(4);KEEP(*(.isr_vector)) /* Startup code */. = ALIGN(4);} >FLASH/* The program code and other data goes into FLASH */.text :{. = ALIGN(4);*(.text)           /* .text sections (code) */*(.text*)          /* .text* sections (code) */*(.glue_7)         /* glue arm to thumb code */*(.glue_7t)        /* glue thumb to arm code */*(.eh_frame)KEEP (*(.init))KEEP (*(.fini)). = ALIGN(4);_etext = .;        /* define a global symbols at end of code */} >FLASH/* Constant data goes into FLASH */.rodata :{. = ALIGN(4);*(.rodata)         /* .rodata sections (constants, strings, etc.) */*(.rodata*)        /* .rodata* sections (constants, strings, etc.) */. = ALIGN(4);} >FLASH.ARM.extab   : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH.ARM : {__exidx_start = .;*(.ARM.exidx*)__exidx_end = .;} >FLASH.preinit_array     :{PROVIDE_HIDDEN (__preinit_array_start = .);KEEP (*(.preinit_array*))PROVIDE_HIDDEN (__preinit_array_end = .);} >FLASH.init_array :{PROVIDE_HIDDEN (__init_array_start = .);KEEP (*(SORT(.init_array.*)))KEEP (*(.init_array*))PROVIDE_HIDDEN (__init_array_end = .);} >FLASH.fini_array :{PROVIDE_HIDDEN (__fini_array_start = .);KEEP (*(SORT(.fini_array.*)))KEEP (*(.fini_array*))PROVIDE_HIDDEN (__fini_array_end = .);} >FLASH/* used by the startup to initialize data */_sidata = LOADADDR(.data);/* Initialized data sections goes into RAM, load LMA copy after code */.data : {. = ALIGN(4);_sdata = .;        /* create a global symbol at data start */*(.data)           /* .data sections */*(.data*)          /* .data* sections */. = ALIGN(4);_edata = .;        /* define a global symbol at data end */} >RAM AT> FLASH/* Uninitialized data section */. = ALIGN(4);.bss :{/* This is used by the startup in order to initialize the .bss secion */_sbss = .;         /* define a global symbol at bss start */__bss_start__ = _sbss;*(.bss)*(.bss*)*(COMMON). = ALIGN(4);_ebss = .;         /* define a global symbol at bss end */__bss_end__ = _ebss;} >RAM/* User_heap_stack section, used to check that there is enough RAM left */._user_heap_stack :{. = ALIGN(8);PROVIDE ( end = . );PROVIDE ( _end = . );. = . + _Min_Heap_Size;. = . + _Min_Stack_Size;. = ALIGN(8);} >RAM/* Remove information from the standard libraries *//DISCARD/ :{libc.a ( * )libm.a ( * )libgcc.a ( * )}.ARM.attributes 0 : { *(.ARM.attributes) }
}

Entry Point

ENTRY(Reset_Handler)
  • ENTRY(Reset_Handler)定义了程序的入口点。当微控制器启动时,它将首先调用 Reset_Handler 函数。

堆栈地址

_estack = 0x20010000;    /* end of RAM */
  • _estack 变量定义了用户模式堆栈的最高地址,即 RAM 的末尾。
_Min_Heap_Size = 0x200;      /* required amount of heap  */
_Min_Stack_Size = 0x400; /* required amount of stack */
  • _Min_Heap_Size_Min_Stack_Size 定义了堆和栈所需的最小大小。

内存区域

MEMORY
{RAM (xrw)      : ORIGIN = 0x20000000, LENGTH = 64KFLASH (rx)      : ORIGIN = 0x8000000, LENGTH = 512K
}
  • MEMORY 语句定义了两种内存区域:RAM 和 FLASH。
    • RAM (随机存取存储器) 用于临时存储数据,起始地址为 0x20000000,长度为 64KB。
    • FLASH (闪存) 用于存储程序代码和常量数据,起始地址为 0x8000000,长度为 512KB。

输出段

SECTIONS
{/* ... 其他段定义 ... */
}
  • SECTIONS 语句定义了链接器应该创建的输出段。

中断向量表

.isr_vector :
{. = ALIGN(4);KEEP(*(.isr_vector)) /* Startup code */. = ALIGN(4);
} >FLASH
  • .isr_vector 段用于存储中断向量表,其中包含中断服务例程的地址。

程序代码和数据

.text :
{/* ... 程序代码和数据段定义 ... */
} >FLASH
  • .text 段包含程序代码和只读数据。

常量数据

.rodata :
{/* ... 常量数据段定义 ... */
} >FLASH
  • .rodata 段包含只读数据,如字符串和常量。

初始化数组

.preinit_array     :
{/* ... 初始化数组段定义 ... */
} >FLASH
  • .preinit_array.init_array.fini_array 段包含程序初始化和终止的函数。

数据段

.data : 
{/* ... 数据段定义 ... */
} >RAM AT> FLASH
  • .data 段包含初始化数据,这些数据在程序启动时从 FLASH 复制到 RAM。

未初始化数据段

.bss :
{/* ... 未初始化数据段定义 ... */
} >RAM
  • .bss 段包含未初始化的数据,这些数据在程序启动时初始化为零。

用户堆栈

._user_heap_stack :
{/* ... 用户堆栈段定义 ... */
} >RAM
  • ._user_heap_stack 段定义了用户堆栈的大小。

废弃信息

/DISCARD/ :
{/* ... 废弃信息段定义 ... */
}
  • /DISCARD/ 段用于删除标准库中的信息。

ARM 属性

.ARM.attributes 0 : { *(.ARM.attributes) }
  • .ARM.attributes 段包含 ARM 特定的属性信息。

相关文章:

  • 北京网站建设多少钱?
  • 辽宁网页制作哪家好_网站建设
  • 高端品牌网站建设_汉中网站制作
  • 库(Library)
  • Kafka 常用的传输和序列化数据方式
  • 51单片机——实时时钟
  • 数分基础(06)商业分析四种类型简介
  • 技术Leader在训练团队思考力中的核心职责
  • 环信高质量全球网络——70%丢包环境,消息100%送达,抗弱网能力大幅提升!
  • DAMA数据管理知识体系(第4章 数据架构)
  • B站视频自动驾驶master(2)
  • ARP协议(原理,特点,报文格式,具体过程),ARP缓存(有效时间,为什么),ARP欺骗(定向断网,成为中间人),RARP简单介绍
  • leetcode 2816.翻倍以链表形式表示的数字
  • 访问Neo4j验证失败(The client is unauthorized due to authentication failure.)
  • ubuntu环境下部署LNMP集成环境超详细图文教程
  • <Rust>egui学习之小部件(七):如何在窗口中添加颜色选择器colorpicker部件?
  • 【行测笔记】
  • AN7536PT时钟电路
  • 【译】JS基础算法脚本:字符串结尾
  • 《网管员必读——网络组建》(第2版)电子课件下载
  • Asm.js的简单介绍
  • echarts花样作死的坑
  • IDEA常用插件整理
  • Javascript Math对象和Date对象常用方法详解
  • leetcode388. Longest Absolute File Path
  • Material Design
  • miaov-React 最佳入门
  • node-sass 安装卡在 node scripts/install.js 解决办法
  • rc-form之最单纯情况
  • ReactNative开发常用的三方模块
  • 目录与文件属性:编写ls
  • 前端每日实战:70# 视频演示如何用纯 CSS 创作一只徘徊的果冻怪兽
  • 入职第二天:使用koa搭建node server是种怎样的体验
  • 实现菜单下拉伸展折叠效果demo
  • 使用iElevator.js模拟segmentfault的文章标题导航
  • 使用阿里云发布分布式网站,开发时候应该注意什么?
  • 数据仓库的几种建模方法
  • 找一份好的前端工作,起点很重要
  • ionic入门之数据绑定显示-1
  • $Django python中使用redis, django中使用(封装了),redis开启事务(管道)
  • (10)ATF MMU转换表
  • (10)Linux冯诺依曼结构操作系统的再次理解
  • (160)时序收敛--->(10)时序收敛十
  • (Java入门)学生管理系统
  • (Java数据结构)ArrayList
  • (Oracle)SQL优化技巧(一):分页查询
  • (windows2012共享文件夹和防火墙设置
  • (待修改)PyG安装步骤
  • (二)linux使用docker容器运行mysql
  • (二十一)devops持续集成开发——使用jenkins的Docker Pipeline插件完成docker项目的pipeline流水线发布
  • (附源码)springboot青少年公共卫生教育平台 毕业设计 643214
  • (佳作)两轮平衡小车(原理图、PCB、程序源码、BOM等)
  • (贪心) LeetCode 45. 跳跃游戏 II
  • (一)硬件制作--从零开始自制linux掌上电脑(F1C200S) <嵌入式项目>
  • (原創) 是否该学PetShop将Model和BLL分开? (.NET) (N-Tier) (PetShop) (OO)
  • (转)JVM内存分配 -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
  • (转)重识new
  • *算法训练(leetcode)第三十九天 | 115. 不同的子序列、583. 两个字符串的删除操作、72. 编辑距离