JsonX: Mapping JSON to C Structs on Embedded Systems
Introduction JSON is everywhere – from web services to IoT. But here’s the catch: most popular JSON libraries were written with desktops and servers in mind, where nobody cares about a few extra megabytes. On microcontrollers, especially Cortex-M devices, every byte and every millisecond counts. Sure, you can push raw C structs around and even…