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.

What does printf output to on TIVA launchpad

When I invoke CCSv5 for TIVA and include stdio.h , is a stdout stream automatically opened and what device does it correspond to?

Regards

  • Nikhil Kant said:
    is a stdout stream automatically opened and what device does it corres

    By default the stdout stream is handled by CCS setting a target breakpoint, and CCS then reading the contents of a buffer from the target memory and displaying the output in the CCS CIO window. You can re-direct stdout to a different device, e.g. a UART on the target.

    See Tips for using printf for details.