pub struct READMODE_W<'a> { /* private fields */ }Expand description
Write proxy for field READMODE
Implementations§
Source§impl<'a> READMODE_W<'a>
impl<'a> READMODE_W<'a>
Sourcepub fn variant(self, variant: READMODE_A) -> &'a mut W
pub fn variant(self, variant: READMODE_A) -> &'a mut W
Writes variant to the field
Sourcepub fn no_miss_penalty(self) -> &'a mut W
pub fn no_miss_penalty(self) -> &'a mut W
The NVM Controller (cache system) does not insert wait states on a cache miss. Gives the best system performance.
Sourcepub fn low_power(self) -> &'a mut W
pub fn low_power(self) -> &'a mut W
Reduces power consumption of the cache system, but inserts a wait state each time there is a cache miss. This mode may not be relevant if CPU performance is required, as the application will be stalled and may lead to increase run time.
Sourcepub fn deterministic(self) -> &'a mut W
pub fn deterministic(self) -> &'a mut W
The cache system ensures that a cache hit or miss takes the same amount of time, determined by the number of programmed flash wait states. This mode can be used for real-time applications that require deterministic execution timings.
Auto Trait Implementations§
impl<'a> Freeze for READMODE_W<'a>
impl<'a> !RefUnwindSafe for READMODE_W<'a>
impl<'a> Send for READMODE_W<'a>
impl<'a> !Sync for READMODE_W<'a>
impl<'a> Unpin for READMODE_W<'a>
impl<'a> !UnwindSafe for READMODE_W<'a>
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