在KEIL编译器中STM32怎么样可以定义Flash地址定义常量
时间:10-02
整理:3721RD
点击:
如题,我采用的是KEIL编译器,
想定义一个常量在0x0807F000,已尝试过如下办法,均告失败:
1. const unsigned int VOL_uiTemp @0x0807F000
2. const unsigned int VOL_uiTemp __at(0x0807F000)
3. const unsigned int VOL_uiTemp __attribute__((at(0x0807F000)))
麻烦大伙给看看,不胜感激,越详细越好!
想定义一个常量在0x0807F000,已尝试过如下办法,均告失败:
1. const unsigned int VOL_uiTemp @0x0807F000
2. const unsigned int VOL_uiTemp __at(0x0807F000)
3. const unsigned int VOL_uiTemp __attribute__((at(0x0807F000)))
麻烦大伙给看看,不胜感激,越详细越好!
在HELP里面搜索,const如下图红色框内的信息。选择列表里面的第三个,绿色框内。在右侧就出现如何将一段代码或者常量定义为到固定的代码空间。