So you want to remove the start bit and the stop bit because you aren't using the build-in uart.
in C or python
value8bits = (value10bits >>1) & 0xff
In reality he start bit is always 0 so just shift right is ok.
in C or python
value8bits = (value10bits >>1) & 0xff
In reality he start bit is always 0 so just shift right is ok.
Statistics: Posted by danjperron — Tue Feb 20, 2024 2:21 pm