1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![no_std]

pub const GLOBAL_ADDRESS: u8 = 0xff;

//FIXME: Replace once the CAN traits are incorporated
//use embedded_hal as hal;
pub mod hal;

mod bus;
pub use bus::{Bus, BusError};

mod handler;
pub use handler::Handler;

mod id;
pub use id::{Id, IdError, Priority};

mod message;
pub use message::Message;

mod name;
pub use name::Name;

mod product;
pub use product::Product;