Hello all, I'm stumped on how one would keep the REPL on an XBee3 LTE-M modem from unintentionally going into "Paste" mode or other mode when receiving raw data via the UART. I'm reading in data from the UART using "stdin_data = sys.stdin.buffer.read(-1)" but the trouble I'm having is that I have a lot of data with control characters. For example a line ending of 0x0d resets the REPL. How can you avoid this? I see there is a raw REPL mode but again a control character received of 0x0b would knock it out of this mode.