This code no longer echoes back received characters on 5.5 (commit c9e63f14085f5751ff5ead79a7c0382d50a813a2) although the initial "LOOPBACK SERIAL" message is shown. ``` `#include "mbed.h" int main() { Serial *pc = new Serial(USBTX, USBRX); pc->format(8, Serial::None, 1); pc->set_flow_control(Serial::RTSCTS); pc->baud(115200); pc->printf("LOOPBACK SERIAL %d %d>>>>>>\r\n",USBTX,USBRX); while (1) { while (pc->readable()) { char c = pc->getc(); pc->putc(c); } Thread::wait(10); } } ` ``` ### Description - Type: Bug **Target** UBLOX_EVK_NINA_B1 **Toolchain:** GCC_ARM