embedded-registers 0.9.13

Procedural macro for effortless definitions of registers in embedded device drivers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod crc_codec;
mod no_codec;
mod simple_codec;

pub use crc_codec::Crc8Algorithm;
pub use crc_codec::Crc8Codec;

pub use no_codec::NoCodec;
pub use simple_codec::SimpleCodec;

pub type OneByteRegAddrCodec = SimpleCodec<1>;
pub type TwoByteRegAddrCodec = SimpleCodec<2>;