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/TM4C1290NCZAD:CCS/TM4C1290NCZAD

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

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/873133/ccs-tm4c1290nczad-ccs-tm4c1290nczad

器件型号:TM4C1290NCZAD

工具/软件:Code Composer Studio

您好!

通过 Tiva 软件、我们可以找到一个名为 global.xdt 的文件(在 NDK 中)、该文件具有到 CCS 控制台的输出。

例如 XDC_runtime System_printf ("网络已添加:");

这个输出似乎对 Tiva 硬件函数(中断?)产生了问题。

这可能是真的吗?

是否可以通过"一键"禁用此输出(例如、在"属性"中)?

BR Ralf

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

    您好 Ralf、

    .cfg 文件中的 System.SupportProxy 是什么? 尝试将其设置为 SysMin (如下所示)

    VAR SysMin = xdc.useModule('xdc.runtime.SysMin');
    SysMin。bufSize = 512;
    SysMin。flushAtExit = true;
    System.SupportProxy = SysMin; 

    System_printf 的输出将存储在本地缓冲区中,您可以在 CCS 中使用 Tools->ROV->SysMin 进行查看。

    Todd