1. Serial Communications Basics
Note
Any command byte, data byte or checksum byte that equals
\x80, \xfe, \xff
has to be converted!
1.
Transmission
- instead of
\x80
, send
\x80
followed by
\x00
- instead of
\xfe
, send
\x80
followed by
\x7e
- instead of
\xff
, send
\x80
followed by
\x7f
2.
Reception
- replace
\x80
followed by
\x00
with
\x80
- replace
\x80
followed by
\x7e
with
\xfe
- replace
\x80
followed by
\x7f
with
\xff
R5976538 BARCOREALITY SIM6 ULTRA SERIES 08/06/2005
7