M-Bus application layer
This crate parses EN 13757-3 application-layer data without requiring a wired or wireless link-layer frame.
Use parse_application_layer when the input begins with a CI field, or
parse_data_records when the CI and transport headers have already been
removed:
use parse_data_records;
let data = ;
for record in parse_data_records
Run the complete data-record example from the workspace root:
cargo run -p m-bus-application-layer --example parse_data_records
The parser is allocation-free and supports no_std; formatting and standard
error traits are enabled by the optional std feature.