The standard RTI TxRxComms driver does not cope with the \x0A or \x0D character properly. When one of those commands is used as a serial code, the other character is appended and both are sent. Example: Code: `\x08\x22\x0A\x00\x05\x00\xC7` Result: `\x08\x22\x0D\x0A\x00\x05\x00\xC7` In the end, the command is not re...