#[repr(C)]
pub struct RegisterBlock {
Show 24 fields pub cr: Reg<CR_SPEC>, pub sr: Reg<SR_SPEC>, pub dinr: Reg<DINR_SPEC>, pub doutr: Reg<DOUTR_SPEC>, pub keyr0: Reg<KEYR0_SPEC>, pub keyr1: Reg<KEYR1_SPEC>, pub keyr2: Reg<KEYR2_SPEC>, pub keyr3: Reg<KEYR3_SPEC>, pub ivr0: Reg<IVR0_SPEC>, pub ivr1: Reg<IVR1_SPEC>, pub ivr2: Reg<IVR2_SPEC>, pub ivr3: Reg<IVR3_SPEC>, pub keyr4: Reg<KEYR4_SPEC>, pub keyr5: Reg<KEYR5_SPEC>, pub keyr6: Reg<KEYR6_SPEC>, pub keyr7: Reg<KEYR7_SPEC>, pub susp0r: Reg<SUSP0R_SPEC>, pub susp1r: Reg<SUSP1R_SPEC>, pub susp2r: Reg<SUSP2R_SPEC>, pub susp3r: Reg<SUSP3R_SPEC>, pub susp4r: Reg<SUSP4R_SPEC>, pub susp5r: Reg<SUSP5R_SPEC>, pub susp6r: Reg<SUSP6R_SPEC>, pub susp7r: Reg<SUSP7R_SPEC>,
}
Available on crate feature stm32wl5x_cm4 only.
Expand description

Register block

Fields§

§cr: Reg<CR_SPEC>

0x00 - control register

§sr: Reg<SR_SPEC>

0x04 - status register

§dinr: Reg<DINR_SPEC>

0x08 - data input register

§doutr: Reg<DOUTR_SPEC>

0x0c - data output register

§keyr0: Reg<KEYR0_SPEC>

0x10 - key register 0

§keyr1: Reg<KEYR1_SPEC>

0x14 - key register 1

§keyr2: Reg<KEYR2_SPEC>

0x18 - key register 2

§keyr3: Reg<KEYR3_SPEC>

0x1c - key register 3

§ivr0: Reg<IVR0_SPEC>

0x20 - initialization vector register 0

§ivr1: Reg<IVR1_SPEC>

0x24 - initialization vector register 1

§ivr2: Reg<IVR2_SPEC>

0x28 - initialization vector register 2

§ivr3: Reg<IVR3_SPEC>

0x2c - initialization vector register 3

§keyr4: Reg<KEYR4_SPEC>

0x30 - key register 4

§keyr5: Reg<KEYR5_SPEC>

0x34 - key register 5

§keyr6: Reg<KEYR6_SPEC>

0x38 - key register 6

§keyr7: Reg<KEYR7_SPEC>

0x3c - key register 7

§susp0r: Reg<SUSP0R_SPEC>

0x40 - AES suspend register 0

§susp1r: Reg<SUSP1R_SPEC>

0x44 - AES suspend register 1

§susp2r: Reg<SUSP2R_SPEC>

0x48 - AES suspend register 2

§susp3r: Reg<SUSP3R_SPEC>

0x4c - AES suspend register 3

§susp4r: Reg<SUSP4R_SPEC>

0x50 - AES suspend register 4

§susp5r: Reg<SUSP5R_SPEC>

0x54 - AES suspend register 5

§susp6r: Reg<SUSP6R_SPEC>

0x58 - AES suspend register 6

§susp7r: Reg<SUSP7R_SPEC>

0x5c - AES suspend register 7

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.