AWR2944EVM: How to get log prints

Part Number: AWR2944EVM

Tool/software:

Hi,

is it possible to add log prints to the code in CCS and see them?

  • Hello,

    For the easiest way I'd recommend printf(), this will print what is desired to the console. The downside with this command is that it is slow and can hang the program. Only recommend having a few printf() logs to decrease chances of hanging.

    DebugP_log is another option. It is faster than printf() but not as consistent. It will not always work and it prints to the console. 

    Best,

    Gabriel