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.

[参考译文] CCS/TMS570LS3137:CCS/TMS570LS3137

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

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/757137/ccs-tms570ls3137-ccs-tms570ls3137

器件型号:TMS570LS3137

工具/软件:Code Composer Studio

您好、论坛、

我正在尝试创建一个 ELF 或 COFF 映像以刷写到 EEPROM 扇区、即从 C 源代码构建的器件配置数据。 我想用 nowFlash 对此进行刷写。

CCS 始终需要一个主函数、我想找到一种规避方法。  如果不这样做、实现目标的最佳方式是什么?

谢谢!

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    您好、Karl、
    如果您不使用运行时库、则不需要主函数。 使用--entry_point 选项指定不同的入口点,而不是_c_init00。 当然、您会丢失一些内置于运行时库中的初始化代码。

    谢谢
    Ki