SD card logging example with Embedded Proto

BartExamples

This example shows you how to easily log data to a SD card with Embedded Proto. The advantage of using protobuf for logging data is that protobuf makes it easy to add new fields with new code revisions. This while it remains backwards compatible. Allowing you to read back old logs with new software. This is especially handing when still … Read More

Communincating Sensor data with Embedded Proto

BartExamples

This example shows how you could communicate over UART in a structured manner using protobuf on a FRDM-KE02Z development board. Embedded Proto is used to generate the embedded code while regular protoc code is used for the python desktop script. Commands are sent from the PC to the MCU. The MCU will in turn reply with a message to send … Read More