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.

[参考译文] RTOS/CC3200:是否可以将 System_printf()从 SysStd 中保留并将 SysCallback 用于 System_abort()?

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

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/569982/rtos-cc3200-is-it-possible-to-keep-system_printf-from-sysstd-and-use-syscallback-for-system_abort

器件型号:CC3200

工具/软件:TI-RTOS

 与该线程 e2e.ti.com/.../2089547相关的内容

我是否有办法做到这一点、并且仍然保留 SysStd 中的 System_printf?

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

    没关系。 我所做的是:

    VAR System = xdc.useModule('xdc.runtime.System');
    System.ABortFxn ="&myAbortSystem";
    System.exitFxn = System.exitStd;
    System.maxAtexitHandlers = 2;
    System.SupportProxy = XDC.MODULE ("xdc.runtime.SysStd");
    System.SupportProxy = SysStd; 

    这是我首先要更改的内容。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    很高兴看到这个问题得到解决。