Skip to main content

RegisterBlock

Struct RegisterBlock 

Source
pub struct RegisterBlock {
Show 16 fields pub ctl: Reg<CTL_SPEC>, pub test: Reg<TEST_SPEC>, pub cmd: Reg<CMD_SPEC>, pub seq_default: Reg<SEQ_DEFAULT_SPEC>, pub seq_read_ctl_0: Reg<SEQ_READ_CTL_0_SPEC>, pub seq_read_ctl_1: Reg<SEQ_READ_CTL_1_SPEC>, pub seq_read_ctl_2: Reg<SEQ_READ_CTL_2_SPEC>, pub seq_read_ctl_3: Reg<SEQ_READ_CTL_3_SPEC>, pub seq_read_ctl_4: Reg<SEQ_READ_CTL_4_SPEC>, pub seq_read_ctl_5: Reg<SEQ_READ_CTL_5_SPEC>, pub seq_program_ctl_0: Reg<SEQ_PROGRAM_CTL_0_SPEC>, pub seq_program_ctl_1: Reg<SEQ_PROGRAM_CTL_1_SPEC>, pub seq_program_ctl_2: Reg<SEQ_PROGRAM_CTL_2_SPEC>, pub seq_program_ctl_3: Reg<SEQ_PROGRAM_CTL_3_SPEC>, pub seq_program_ctl_4: Reg<SEQ_PROGRAM_CTL_4_SPEC>, pub seq_program_ctl_5: Reg<SEQ_PROGRAM_CTL_5_SPEC>, /* private fields */
}
Expand description

Register block

Fields§

§ctl: Reg<CTL_SPEC>

0x00 - Control

§test: Reg<TEST_SPEC>

0x04 - Test

§cmd: Reg<CMD_SPEC>

0x10 - Command

§seq_default: Reg<SEQ_DEFAULT_SPEC>

0x20 - Sequencer Default value

§seq_read_ctl_0: Reg<SEQ_READ_CTL_0_SPEC>

0x40 - Sequencer read control 0

§seq_read_ctl_1: Reg<SEQ_READ_CTL_1_SPEC>

0x44 - Sequencer read control 1

§seq_read_ctl_2: Reg<SEQ_READ_CTL_2_SPEC>

0x48 - Sequencer read control 2

§seq_read_ctl_3: Reg<SEQ_READ_CTL_3_SPEC>

0x4c - Sequencer read control 3

§seq_read_ctl_4: Reg<SEQ_READ_CTL_4_SPEC>

0x50 - Sequencer read control 4

§seq_read_ctl_5: Reg<SEQ_READ_CTL_5_SPEC>

0x54 - Sequencer read control 5

§seq_program_ctl_0: Reg<SEQ_PROGRAM_CTL_0_SPEC>

0x60 - Sequencer program control 0

§seq_program_ctl_1: Reg<SEQ_PROGRAM_CTL_1_SPEC>

0x64 - Sequencer program control 1

§seq_program_ctl_2: Reg<SEQ_PROGRAM_CTL_2_SPEC>

0x68 - Sequencer program control 2

§seq_program_ctl_3: Reg<SEQ_PROGRAM_CTL_3_SPEC>

0x6c - Sequencer program control 3

§seq_program_ctl_4: Reg<SEQ_PROGRAM_CTL_4_SPEC>

0x70 - Sequencer program control 4

§seq_program_ctl_5: Reg<SEQ_PROGRAM_CTL_5_SPEC>

0x74 - Sequencer program control 5

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.