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.
在2800157 中如何将FAPI_F280015x_EABI_v2.00.10.lib库中的Fapi_issueProgrammingCommand(),Fapi_issueAsyncCommandWithAddress()等函数放置在ram区域,也就是编译完成后,函数的存放地址在RAM区域,断电后这两个函数不会保留在程序中
您好,
为了从 RAM 运行 Flash api
1. 带有 RAM 链接器 cmd 文件的 Flash 链接器 cmd 文件(这些在 C2000ware 中可用)
2. 将构建配置从 Flash 更改为 RAM,用户可以将工程导入 CCS,然后右键单击工程并选择“Build Configurations”-> “Set Active”->“RAM”。
不是从ram运行,是把库文件中指定的函数放在指定的ram区域。flash加载,ram运行已经找到例程可以参考,但不是我想要的。上面这种方式会把所有程序代码都放在ram区域,对于较大工程,空间不够,只希望提取部分关键函数放在ram区域。