Hi
I am looking at the 'zigbee 3.0 control bridge example'
and I want to print message using 'debug_vprintf' function.
but it is not working well.
Uppercase letters are printed correctly, but lowercase letters are broken.
and sometimes it outputs normally.
I am wondering why.
thank you
Solved! Go to Solution.
Hi JunTae,
How are you using the debug print function?
However, you could use the next 2 options.
vLog_Printf ( TRACE_EXC, LOG_INFO, "\n** Control Bridge Reset** " );
or
DBG_vPrintf(TRUE, "APP: Watchdog timer has reset device!\r\n");
Regards,
Mario
thank you for your advise.
I will use vLog_vPrintf
Hi JunTae,
How are you using the debug print function?
However, you could use the next 2 options.
vLog_Printf ( TRACE_EXC, LOG_INFO, "\n** Control Bridge Reset** " );
or
DBG_vPrintf(TRUE, "APP: Watchdog timer has reset device!\r\n");
Regards,
Mario