Jonathan Perret

Results 11 issues of Jonathan Perret

Currently `sliplib.encode` inserts an `END` (`0xc3`) byte at the start as well as the end of the SLIP packet: ```bash $ python -c 'import sliplib;print(sliplib.encode(b"abc"))' b'\xc0abc\xc0' ``` Reading the "nonstandard"...