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

Part Number: TM4C1290NCZAD

Tool/software: Code Composer Studio

Hi,

with the TIVA ware we find a file (in NDK) called global.xdt with output to CCS console.

Like e.g. xdc_runtime_System_printf("Network Added: ");

Its seems, that this output makes trouble with TIVA hardware functions (interrupts?).

Could this be true?

Is there a possibility to disable this output with "1-click" (e.g. in Properties)?

br Ralf

  • Hi Ralf,

    What is your System.SupportProxy in your .cfg file? Try setting it to SysMin (as shown below)

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

    The output of System_printf will be stored in a local buffer that you can view with Tools->ROV->SysMin in CCS.

    Todd