COBS-RS
A very minimal no_std Consistent Overhead Byte Stuffing library.
Usage
This library provides 2 functions.
stuff and unstuff which encode and decode according to the COBS standard,
respectively.
Example
let data: = ;
// Encode the data
let encoded: = stuff;
// ... snip
// Decode the data
let decoded: = unstuff;
assert_eq!;
License
Licensed under a MIT license.