I'm using UI flow 2.0. My UART device has special ascii char for end of line (0x7E). I believe EOL is detected using line feed by default 0x0A.. Is there a way to set custom end of line character in the UART initialization?
uart1 = UART(1, baudrate=115200, bits=8, parity=None, stop=1, tx=32, rx=26, txbuf=256, rxbuf=256, timeout=0, timeout_char=0, invert=0, flow=0)