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.

[参考译文] CC1352R:数据/变量放置在绝对存储器位置

Guru**** 2390755 points


请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/sub-1-ghz-group/sub-1-ghz/f/sub-1-ghz-forum/1357520/cc1352r-data-variable-placement-at-an-absolute-memory-location

器件型号:CC1352R

在 IAR 系统中 、我们可以使用@运算符或#pragmalocation 指令将变量/常量放在绝对存储器位置。   

  示例1:演示如何使用 __no_init指令

__no_init SUMMARY_INFO sInfo @ 0x1100

 示例2:演示如何使用 #pragma location指令

#pragma location=0x1100

__no_init SUMMARY_INFO sInfo;

Is there a way to use this concept in Code Composer Studio? If so how do we use the Data / variable Placement at an Absolute Memory Location