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.
工具/软件:Code Composer Studio
您好!
我的项目会编译(编译)、但由于这些错误而无法链接?
错误#10099-D:程序将无法放入可用存储器、或者该段包含需要无法为此段生成的 trampoline 的调用站点。 ".TI.bound:AES_keys"大小0x60的段运行定位失败、与".TI.bound:ten4_mirror_stack"的大小0xf4重叠(第0页)
在我的代码中、我一直使用#pragma LOCATION (x、addr)链接 FRAM 空间中的数据。
Craig
您已将#pragma 位置应用于聚合变量(可能是数组) AES_keys 和 ten4_mirror_stack。 它们在存储器中重叠。 其中一个的基址加上其大小会超过另一个基址。
谢谢、此致、
乔治