j1939-async 0.1.0-alpha1

A J1939 Library able to be used async (or not).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(not(test), no_std)]

pub mod can;
pub mod error;
pub mod name;
pub mod pgn;
pub mod process_data;
pub mod stack;
pub mod string_utils;

#[cfg_attr(feature = "embassy", path = "os/embassy.rs")]
mod os;

pub use crate::can::Id;