Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

I want to get the debug info in app wwd.canned_send from sdk 3.1.2.

I commented these lines in NoOS_canned_send.c:

/* In release builds all UART printing is TURNED OFF to remove printf and malloc dependency which reduces memory usage dramatically YIN REN ZHU MU DI */

//#ifndef DEBUG

//#undef  WPRINT_APP_INFO

//#define WPRINT_APP_INFO(args)

//#endif

other Code from the Wiced-SDK-3.1.2-IDE-Installer.exe are NOT modified.

I can NOT get the debug info yet from the WICED USB Serial Port( it can work well with other app) after making target.

open the declatration as follwing:

WPRINT_APP_INFO(("\nPlatform " PLATFORM " initialised\n"));

is

#define WPRINT_APP_INFO(args) WPRINT_MACRO(args)

is

#define WPRINT_MACRO(args) do {printf args;} while(0==1)


Could you please tell me what is wrong? I appreciate your help.

0 Likes
2 Replies