固定地址的AT32UC3 / WinAVR const变量

时间:2015-08-17 14:23:36

标签: avr avr-gcc winavr

我将AT32UC3B0256微控制器与AVR32Studio 2.6结合使用,我想在固定地址取悦一个常量变量( 例如位于闪光灯末端的位置0x80799999处。

const int variable __attribute__((section(????))) = 1234;

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

在程序使用中

const int variable __attribute__((section(".varaddress"))) = 1234;

并在链接描述文件中添加此标志:

-wl,--section-start=.varaddress=0x80799999

您也可以在AVR中查看Memory Sections