STM32的RAM的绝对地址定位,以及初始化不为0

MDK帮助文档里面写的还是比较清楚:


__attribute__((at(address))) variable attribute

__attribute__((at(address))) variable attribute

This variable attribute enables you to specify the absolute address of a variable.

The variable is placed in its own section, and the section containing the variable is given an appropriate type by the compiler:

  • Read-only variables are placed in a section of type RO.

  • Initialized read-write variables are placed in a section of type RW.

    Variables explicitly initialized to zero are placed in:

    • A section of type ZI in RVCT 4.0 and later.

    • A section of type RW (not ZI) in RVCT 3.1 and earlier. Such variables are not candidates for the ZI-to-RW optimization of the compiler.

  • Uninitialized variables are placed in a section of type ZI.

Show/hideSyntax

__attribute__((at(address)))

where:

address

is the desired address of the variable.

Show/hideRestrictions

The linker is not always able to place sections produced by the at variable attribute.

The compiler faults use of the at attribute when it is used on declarations with incomplete types.

Show/hideErrors

The linker gives an error message if it is not possible to place a section at a specified address.

Show/hideExamples

const int x1 __attribute__((at(0x10000))) = 10; /* RO */
int x2 __attribute__((at(0x12000))) = 10; /* RW */
int x3 __attribute__((at(0x14000))) = 0; /* RVCT 3.1 and earlier: RW.
                                          * RVCT 4.0 and later: ZI. */
int x4 __attribute__((at(0x16000))); /* ZI */


=====================================================================

关于RAM初始化不为0

Noinit selects areas that should be excluded from zero initialization。

NoInitSpecifies areas that should be excluded from zero initialization.

NOINIT

Indicates that the data section is uninitialized, or initialized to zero. It contains only space reservation directives SPACE or DCB, DCD, DCDU, DCQ, DCQU, DCW, or DCWU with initialized values of zero. You can decide at link time whether an area is uninitialized or zero initialized.


=====================================

NOINIT的资料网上非常少。看样子大家用的不多啊。

MDK的target界面有个选项NOINIT ,看样子只能靠这个设置了。还是比较靠谱。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值