Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
自动初始化
IAR
IAR INIT_EXPORT 开始的地址比结束的还大
发布于 2020-07-09 18:53:19 浏览:1445
订阅该版
``` \ | / - RT - Thread Operating System / | \ 4.0.3 build Jul 9 2020 2006 - 2020 Copyright by rt-thread team __rt_init_rti_board_end:0x5ed90 __rt_init_rti_end: 0x27cdc RT-Thread for nrf52840 started.{{project.map(uploading...)}} advertising_start..... ```
查看更多
armink
2020-07-09
这家伙很懒,什么也没写!
之前加过一个自定义的 `.version` 段,好像也没出问题 ``` /*###ICF### Section handled by ICF editor, don't touch! ****/ /*-Editor annotation file-*/ /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ /*-Specials-*/ define symbol __ICFEDIT_intvec_start__ = 0x08000000; /* 软件及硬件版本号存放地址 */ define symbol __ICFEDIT_version_start__ = __ICFEDIT_intvec_start__ + 512; /*-Memory Regions-*/ define symbol __ICFEDIT_region_ROM_start__ = __ICFEDIT_intvec_start__; define symbol __ICFEDIT_region_ROM_end__ = 0x080FFFFF; define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; /*-Sizes-*/ define symbol __ICFEDIT_size_cstack__ = 0x2000; define symbol __ICFEDIT_size_heap__ = 0x2000; /**** End of ICF editor section. ###ICF###*/ define symbol __region_RAM1_start__ = 0x10000000; define symbol __region_RAM1_end__ = 0x1000FFFF; define memory mem with size = 4G; define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; define region RAM1_region = mem:[from __region_RAM1_start__ to __region_RAM1_end__]; define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; initialize by copy { readwrite }; do not initialize { section .noinit }; place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; place in ROM_region { readonly }; place in RAM_region { block CSTACK, last block HEAP, section .sram}; place in RAM1_region { readwrite }; /* armink add for version storage */ keep { section .version }; place at address mem:__ICFEDIT_version_start__ { readonly section .version }; /* armink add for finsh */ keep { section FSymTab }; keep { section VSymTab }; keep { section .rti_fn* }; ```
3
个回答
默认排序
按发布时间排序
hzhmcu
2020-07-09
这家伙很懒,什么也没写!
``` .rodata const 0x2'7c3c 0x2c pkt_tilt.o [1] .rodata const 0x2'7c68 0x2c pkt_tilt.o [1] .rodata const 0x2'7c94 0x2c rt_nrf_hal_spi.o [1] .rti_fn.6 const 0x2'7cc0 0x4 inf_ble.o [1] .rti_fn.6 const 0x2'7cc4 0x4 inf_gsm.o [1] .rti_fn.6 const 0x2'7cc8 0x4 inf_usb_hid.o [1] .rti_fn.6 const 0x2'7ccc 0x4 inf_wdt.o [1] .rti_fn.6 const 0x2'7cd0 0x4 pkt_time_event.o [1] .rti_fn.6 const 0x2'7cd4 0x4 pkt_work.syswork.o [1] .rti_fn.6 const 0x2'7cd8 0x4 shell.o [1] .rti_fn.6.end const 0x2'7cdc 0x4 components.o [1] .text ro code 0x2'7ce0 0x2 iar_startup_nrf52840.o [1] .rodata const 0x2'7ce2 0x1 dev_config.read.o [1] .rodata const 0x2'7ce3 0x1 nrf_drv_power.o [1] .rodata const 0x2'7ce4 0x1 protor.s.blebase.o [1] .rodata const 0x2'7ce5 0x1 protor.s.control.o [1] .rodata const 0x2'7ce6 0x1 protor.s.debug.o [1] .rodata const 0x2'7ce7 0x1 protor.s.factory.o [1] .rodata const 0x2'7ce8 0x1 protor.s.record.o [1] .rodata const 0x2'7ce9 0x1 protor.s.service.o [1] .rodata const 0x2'7cea 0x0 zero_init3.o [4] .rodata const 0x2'7cea 0x0 lz77_init_single.o [4] - 0x2'7cea 0x1aea Absolute sections: 0x2c .rodata const 0x2'8000 0x2c app_fw_info.o [1] - 0x2'802c 0x2c "P1", part 2 of 2: 0x370a0 .text ro code 0x2'802c 0x39fc sms_protocol.o [1] .text ro code 0x2'ba28 0x25d8 dev_config.write.o [1] ``` 增加了一个绝对section.导致的。有没有解决办法呢。这绝对地址是一定要的
aozima
2020-07-09
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
应该是在链接脚本中想办法,指定这块放到text段附近。
撰写答案
登录
注册新账号
关注者
0
被浏览
1.4k
关于作者
hzhmcu
这家伙很懒,什么也没写!
提问
20
回答
31
被采纳
0
关注TA
发私信
相关问题
1
生成一个功能组件,带有自动初始化函数,源码可以自动执行,但是生成库后不起作用
2
自动初始编译出现警告
3
Studio初始化adc提示错误,没定义HAL_ADC_Init
4
硬件初始化函数 HAL_XXX_MspInit在哪里被调用了?
5
基于w5500的libmodbus复位后modbusTCP的监听一直失败
6
自动初始化的信息输出
7
[新功能] 组件初始化
8
INIT_EXPORT 宏理解
9
关于自动初始化的一些疑问
10
关于自动初始化具体分类
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
【NXP-MCXA153】 定时器驱动移植
2
GD32F450 看门狗驱动适配
3
【NXP-MCXA153】看门狗驱动移植
4
RT-Thread Studio V2.2.9 Release Note
5
CherryUSB的bootuf2配置
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
PWM
freemodbus
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
踩姑娘的小蘑菇
7
个答案
2
次被采纳
a1012112796
16
个答案
1
次被采纳
Ryan_CW
5
个答案
1
次被采纳
红枫
4
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
本月文章贡献
YZRD
3
篇文章
6
次点赞
catcatbing
3
篇文章
6
次点赞
lizimu
2
篇文章
9
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部