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.

CC1352P7: Wi-SUN: ns_trace prints even with EXCLUDE_TRACE defined

Part Number: CC1352P7

Tool/software:

Hi,

I'm running a Coap node on CC1352P7 with SimpleLink CC13xx CC26xx SDK and the trace messages are being print out even with EXCLUDE_TRACE defined in the Predefined Symbols.

What is the reason for that? Do I need to disable anything else?

Thanks in advance,
Eduardo.

  • Hi Eduardo,

    EXCLUDE_TRACE is undefined in application.c, line 38. Removing this should fix your issue.

    /*
     *  ======== application.c ========
     */
    
    #ifndef WISUN_NCP_ENABLE
    #undef EXCLUDE_TRACE
    #endif

    Cheers,

    Marie H