Hello,
Currently the mode is.
1 stop bit
8 data bits
no parity
Which ARM device are you using and I will investigate how tricky adding parity would be. It might be very simple to switch on.
If you're using the ST-ARM devices then it looks like it should be fairly simple.
Simply edit the following file using a text editor.
"C:\ProgramData\MatrixTSL\FlowcodeV8\CAL\STARM\STARM_CAL_UART.c"
Please note that the ProgramData folder is hidden by default so simply paste the full path into a Windows explorer address bar.
C:\ProgramData\MatrixTSL\FlowcodeV8\CAL\STARM\
Look around line 228 and you should see a line of code like this.
Code: Select all
MX_UART_HANDLE_X.Init.Parity = UART_PARITY_NONE;
Try changing it to this instead.
Code: Select all
MX_UART_HANDLE_X.Init.Parity = UART_PARITY_EVEN;
Save the file and hopefully that is all that is required.
If you run the update system (help -> Check for updates) it will flag the CAL .c file as invalid and if downloaded will overwrite with the official file so you can easily go back to stock at any point if you need to.