This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM3352: 数据放入指定内存地址的相关问题

Part Number: AM3352
Other Parts Discussed in Thread: AM3359

开发板是am3359,处理器是ARM CoretxA8,操作系统是RTOS。

我在.c文件中用#pragma DATA_SECTION指令为数组分配了一个section:

我想将这个section放到以下OCMC_SRAM的起始地址:

我参照SYS/BIOS (TI-RTOS Kernel) User's Guide中7.3 Placing Sections into Memory Segments,

在.cfg文件中加入:

Program.sectMap["eni_data"] = new Program.SectionSpec();

Program.sectMap["eni_data"].loadAddress = 0x40300000;

编译后发生错误。

请问是否是我应用的方式有问题?

谢谢!