|
|
|
|
|
by liamdiprose
2292 days ago
|
|
Protobufs/nanopb would be my go-to for minimal message size. If you want small code size, CBOR seems like a good bet: > The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. [1] This [2] C-implementation fits in under 1KiB of ARM code. [1]: https://cbor.io/ [2]: https://github.com/cabo/cn-cbor |
|