RegisterBlock

Struct RegisterBlock 

Source
#[repr(C)]
pub struct RegisterBlock {
Show 14 fields pub systick_reg: Reg<SYSTICK_REG_SPEC>, pub config1: Reg<CONFIG1_SPEC>, pub config2: Reg<CONFIG2_SPEC>, pub config_fp1: Reg<CONFIG_FP1_SPEC>, pub config_fp2: Reg<CONFIG_FP2_SPEC>, pub config_mem1: Reg<CONFIG_MEM1_SPEC>, pub config_mem2: Reg<CONFIG_MEM2_SPEC>, pub config_mem3: Reg<CONFIG_MEM3_SPEC>, pub m4_mem_int: Reg<M4_MEM_INT_SPEC>, pub m4_mem_intr_en: Reg<M4_MEM_INTR_EN_SPEC>, pub to_intr: Reg<TO_INTR_SPEC>, pub to_intr_en: Reg<TO_INTR_EN_SPEC>, pub a1_power_stat: Reg<A1_POWER_STAT_SPEC>, pub fb_ramfifo: Reg<FB_RAMFIFO_SPEC>, /* private fields */
}
Expand description

Register block

Fields§

§systick_reg: Reg<SYSTICK_REG_SPEC>

0x00 - System tick timer register

§config1: Reg<CONFIG1_SPEC>

0x10 - Configuration register 1

§config2: Reg<CONFIG2_SPEC>

0x14 - Configuration register 2

§config_fp1: Reg<CONFIG_FP1_SPEC>

0x100 - FPU configuration register 1

§config_fp2: Reg<CONFIG_FP2_SPEC>

0x104 - FPU configuration register 2

§config_mem1: Reg<CONFIG_MEM1_SPEC>

0x200 - Memory configuration register 1

§config_mem2: Reg<CONFIG_MEM2_SPEC>

0x204 - Memory configuration register 2

§config_mem3: Reg<CONFIG_MEM3_SPEC>

0x208 - Memory configuration register 3

§m4_mem_int: Reg<M4_MEM_INT_SPEC>

0x21c - SRAM access while in low power mode interrupt flag register (Set bit to clear)

§m4_mem_intr_en: Reg<M4_MEM_INTR_EN_SPEC>

0x220 - SRAM memory access while M4 in low power mode interrupts enable register

§to_intr: Reg<TO_INTR_SPEC>

0x230 - No description provided

§to_intr_en: Reg<TO_INTR_EN_SPEC>

0x234 - No description provided

§a1_power_stat: Reg<A1_POWER_STAT_SPEC>

0x250 - Status of the A1 subsystem power status

§fb_ramfifo: Reg<FB_RAMFIFO_SPEC>

0x300 - Sets Fabric in APB mode

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.