pub struct StateMachine(pub *mut u8);
Tuple Fields§
§0: *mut u8
Implementations§
Source§impl StateMachine
impl StateMachine
Sourcepub fn clkdiv(self) -> Reg<SmClkdiv, RW>
pub fn clkdiv(self) -> Reg<SmClkdiv, RW>
Clock divisor register for state machine 2 Frequency = clock freq / (CLKDIV_INT + CLKDIV_FRAC / 256)
Sourcepub fn execctrl(self) -> Reg<SmExecctrl, RW>
pub fn execctrl(self) -> Reg<SmExecctrl, RW>
Execution/behavioural settings for state machine 2
Sourcepub fn shiftctrl(self) -> Reg<SmShiftctrl, RW>
pub fn shiftctrl(self) -> Reg<SmShiftctrl, RW>
Control behaviour of the input/output shift registers for state machine 2
Trait Implementations§
Source§impl Clone for StateMachine
impl Clone for StateMachine
Source§fn clone(&self) -> StateMachine
fn clone(&self) -> StateMachine
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for StateMachine
impl PartialEq for StateMachine
impl Copy for StateMachine
impl Eq for StateMachine
impl Send for StateMachine
impl StructuralPartialEq for StateMachine
impl Sync for StateMachine
Auto Trait Implementations§
impl Freeze for StateMachine
impl RefUnwindSafe for StateMachine
impl Unpin for StateMachine
impl UnwindSafe for StateMachine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more