[][src]Struct atsamd51g::CPUID

pub struct CPUID { /* fields omitted */ }

CPUID

Implementations

impl CPUID[src]

pub fn select_cache(&mut self, level: u8, ind: CsselrCacheType)[src]

Selects the current CCSIDR

  • level: the required cache level minus 1, e.g. 0 for L1, 1 for L2
  • ind: select instruction cache or data/unified cache

level is masked to be between 0 and 7.

pub fn cache_num_sets_ways(
    &mut self,
    level: u8,
    ind: CsselrCacheType
) -> (u16, u16)
[src]

Returns the number of sets and ways in the selected cache

impl CPUID[src]

pub fn ptr() -> *const RegisterBlock[src]

Returns a pointer to the register block

Trait Implementations

impl Deref for CPUID[src]

type Target = RegisterBlock

The resulting type after dereferencing.

impl Send for CPUID[src]

Auto Trait Implementations

impl !Sync for CPUID

impl Unpin for CPUID

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.