socketcand

Crates.iosocketcand
lib.rssocketcand
version0.1.0
sourcesrc
created_at2024-07-05 06:56:33.223095
updated_at2024-07-05 06:56:33.223095
descriptionSocketcand parser for small systems
homepage
repositoryhttps://github.com/umi-eng/socketcand-rs
max_upload_size
id1292418
size21,479
Liam Kinne (liamkinne)

documentation

README

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.
Commit count: 51

cargo fmt