[][src]Enum efm32pg12_pac::msc::cacheconfig0::CACHELPLEVEL_A

#[repr(u8)]
pub enum CACHELPLEVEL_A {
    BASE,
    ADVANCED,
    MINACTIVITY,
}

Instruction Cache Low-Power Level

Value on reset: 3

Variants

BASE

0: Base instruction cache functionality.

ADVANCED

1: Advanced buffering mode, where the cache uses the fetch pattern to predict highly accessed data and store it in low-energy memory.

MINACTIVITY

3: Minimum activity mode, which allows the cache to minimize activity in logic that it predicts has a low probability being used. This mode can introduce wait-states into the instruction fetch stream when the cache exits one of its low-activity states. The number of wait-states introduced is small, but users running with 0-wait-state memory and wishing to reduce the variability that the cache might introduce with additional wait-states may wish to lower the cache low-power level. Note, this mode includes the advanced buffering mode functionality.

Trait Implementations

impl Clone for CACHELPLEVEL_A[src]

impl Copy for CACHELPLEVEL_A[src]

impl Debug for CACHELPLEVEL_A[src]

impl From<CACHELPLEVEL_A> for u8[src]

impl PartialEq<CACHELPLEVEL_A> for CACHELPLEVEL_A[src]

impl StructuralPartialEq for CACHELPLEVEL_A[src]

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> Same<T> for T

type Output = T

Should always be Self

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.