Trait dw1000::ll::Register[][src]

pub trait Register {
    const ID: u8;
    const SUB_ID: u16;
    const LEN: usize;
}
Expand description

Implemented for all registers

This is a mostly internal crate that should not be implemented or used directly by users of this crate. It is exposed through the public API though, so it can’t be made private.

The DW1000 user manual, section 7.1, specifies what the values of the constant should be for each register.

Associated Constants

The register index

The registers’s sub-index

The lenght of the register

Implementors