[][src]Enum atsams70q19b::sdramc::sdramc_lpr::LPCBR

pub enum LPCBR {
    DISABLED,
    SELF_REFRESH,
    POWER_DOWN,
    DEEP_POWER_DOWN,
}

Possible values of the field LPCB

Variants

DISABLED

The low-power feature is inhibited: no Power-down, Self-refresh or Deep Power-down command is issued to the SDRAM device.

SELF_REFRESH

The SDRAMC issues a Self-refresh command to the SDRAM device, the SDCK clock is deactivated and the SDCKE signal is set low. The SDRAM device leaves the Self-refresh mode when accessed and enters it after the access.

POWER_DOWN

The SDRAMC issues a Power-down Command to the SDRAM device after each access, the SDCKE signal is set to low. The SDRAM device leaves the Power-down mode when accessed and enters it after the access.

DEEP_POWER_DOWN

The SDRAMC issues a Deep Power-down command to the SDRAM device. This mode is unique to low-power SDRAM.

Trait Implementations

impl ToBits<u8> for LPCBR[src]

impl Debug for LPCBR[src]

impl PartialEq<LPCBR> for LPCBR[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for LPCBR[src]

impl Clone for LPCBR[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for LPCBR

impl Send for LPCBR

impl Sync for LPCBR

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self