Hello Segger,
In my application I use multiple up/down RTT channels for different purpose (shell, logging, binary transfer, etc.). When I am debugging with Ozone it's nice to use the integrated Terminal window to capture text messages that are sent from the Target (using e.g.
To give specific example, I can create a new UP channel (Target -> Host direction). Let's call it channel 3 (as channels 0-2 are used for other purpose) and in my application I have
Thank you!
In my application I use multiple up/down RTT channels for different purpose (shell, logging, binary transfer, etc.). When I am debugging with Ozone it's nice to use the integrated Terminal window to capture text messages that are sent from the Target (using e.g.
SEGGER_RTT_WriteString(BufferIndex, "String")
) but how can I specify which RTT up/down channel should be displayed in Ozone Terminal Window?To give specific example, I can create a new UP channel (Target -> Host direction). Let's call it channel 3 (as channels 0-2 are used for other purpose) and in my application I have
SEGGER_RTT_WriteString(3, "print this string");
and in Ozone I open the Terminal window. How can I get the window to show only channel 3 messages?Thank you!