[][src]Struct betrusted_pac::memlcd::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub command: COMMAND,
    pub busy: BUSY,
    pub prescaler: PRESCALER,
    pub ev_status: EV_STATUS,
    pub ev_pending: EV_PENDING,
    pub ev_enable: EV_ENABLE,
}

Register block

Fields

command: COMMAND

0x00 -

busy: BUSY

0x04 - A 1 indicates that the block is currently updating the LCD

prescaler: PRESCALER

0x08 - Prescaler value. LCD clock is module (clock / (prescaler+1)). Reset value: 99, so for a default sysclk of 100MHz this yields an LCD SCLK of 1MHz

ev_status: EV_STATUS

0x0c -

ev_pending: EV_PENDING

0x10 -

ev_enable: EV_ENABLE

0x14 -

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.