I’m attempting to sniff serial data from a 9600,7,N,1 dot matrix serial printer link, and I’m discovering the Serial1 UART fails to recognize data in this mode despite the following setup:
Alternatively, configuration may be constructed manually by ORing ( `|` ) the following configuration constants:
Data bits:
* SERIAL_DATA_BITS_7 - 7 data bits
* SERIAL_DATA_BITS_8 - 8 data bits
* SERIAL_DATA_BITS_9 - 9 data bits
Stop bits:
* SERIAL_STOP_BITS_1 - 1 stop bit
* SERIAL_STOP_BITS_2 - 2 stop bits
* SERIAL_STOP_BITS_0_5 - 0.5 stop bits
* SERIAL_STOP_BITS_1_5 - 1.5 stop bits
Parity:
* SERIAL_PARITY_NO - no parity
* SERIAL_PARITY_EVEN - even parity
* SERIAL_PARITY_ODD - odd parity
What are my options (if any) with using the UART?
I have yet to check, however, if the SoftSerial class supports this?