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.

[参考译文] TMS320F28384S:从 RAM 运行 TI 库

Guru**** 2393275 points
Other Parts Discussed in Thread: C2000WARE

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

https://e2e.ti.com/support/microcontrollers/c2000-microcontrollers-group/c2000/f/c2000-microcontrollers-forum/1084029/tms320f28384s-run-ti-library-from-ram

部件号:TMS320F28384S
“线程:C2000WARE”中讨论的其它部件

大家好,团队

为了使用闪存 API,我需要 从内部 RAM 运行 F2838x_C28x_FlashAPI.lib。

目前 ,F2838x_C28x_FlashAPI.lib 位于(.text)部分。 我想将  F2838x_C28x_FlashAPI.lib 与(.text)部分分开,以便只能将该 lib 加载到 RAM 中。

如何修改 F2838x_C28x_FlashAPI.lib 的输出部分?

 

提前感谢您,

Inno。

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

    Inno,您好!

    我在我的.cmd 文件中使用此片段,并在 c2000ware 示例的其他地方复制:

      组
      {
         TI.ramfunc
         {-l F2838x_C28x_FlashAPI.lib}

      }负载= FLASH12,
       Run = RAMLS67,
       load_start (ramfunctsLoadStart),
       load_size (ramfunctsLoadSize),
       load_end (ramfunctsLoadEnd),
       run_start (运行启动),
       run_size (ramfunctsRunSize),
       run_end (运行环境),
       对齐(8)

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

    非常感谢您的支持。