Hi guys,
I understand that the IDE has now moved away from allowing direct UART manipulation in place of Serial3.begin(speed, config) etc
I have some code which requires UART3 on a Mega 2560 to be changed to 8E1 (even parity)
The following code stopped working
UCSR3C = ( UCSR3C & ~_BV(UPM00) | _BV(UPM01) );
I have since tried to use
Serial3.begin(9600, SERIAL_8E1);
However this doesn't work. Checking my inline scanner it seems to still be using 8N1.
I'm current force to compile on an earlier IDE to get it to work.
Any insight is greatly appreciated.
Thanks in advance.