Hi:
I want same log to display at J-link RTT Viewer channel 0 with _SEGGER_RTT.aUP[0] and same log to display at J-link RTT Viewer channel 1 with _SEGGER_RTT.aUP[1].
I set
when I use the following code ,the log can display channel 0 and channel 1.but do not use _SEGGER_RTT.aUP[1]
C
SEGGER_RTT_SetTerminal(0);
SEGGER_RTT_Write(0,&ch,1);
......
SEGGER_RTT_SetTerminal(1);
SEGGER_RTT_Write(0,&ch,1);
but use SEGGER_RTT_Write(1,&ch,1); the channel 1 do not display anything
Code
SEGGER_RTT_SetTerminal(0);
SEGGER_RTT_Write(0,&ch,1);
......
SEGGER_RTT_SetTerminal(1);
SEGGER_RTT_Write(1,&ch,1);
so ,please help me !
Best regards,
Bluetooth-BLE