socketcand 0.1.0

Socketcand parser for small systems
Documentation

socketcand

A socketcand parser implementation built with nom. Designed for no_std environments and implements embedded-can traits.

use socketcand::wire::command;

let input = "< send 123 0 >";
let (_, result) = command(input).unwrap();

println!("{:?}", result);

Optional features

  • defmt-03: Derive defmt::Format from defmt 0.3 for enums and structs.