Type Alias rp2040_pac::ppb::scr::R
source · pub type R = R<SCR_SPEC>;
Expand description
Register SCR
reader
Aliased Type§
struct R { /* private fields */ }
Implementations§
source§impl R
impl R
sourcepub fn sleeponexit(&self) -> SLEEPONEXIT_R
pub fn sleeponexit(&self) -> SLEEPONEXIT_R
Bit 1 - Indicates sleep-on-exit when returning from Handler mode to Thread mode:
0 = Do not sleep when returning to Thread mode.
1 = Enter sleep, or deep sleep, on return from an ISR to Thread mode.
Setting this bit to 1 enables an interrupt driven application to avoid returning to an empty main application.
sourcepub fn sleepdeep(&self) -> SLEEPDEEP_R
pub fn sleepdeep(&self) -> SLEEPDEEP_R
Bit 2 - Controls whether the processor uses sleep or deep sleep as its low power mode:
0 = Sleep.
1 = Deep sleep.
sourcepub fn sevonpend(&self) -> SEVONPEND_R
pub fn sevonpend(&self) -> SEVONPEND_R
Bit 4 - Send Event on Pending bit:
0 = Only enabled interrupts or events can wakeup the processor, disabled interrupts are excluded.
1 = Enabled events and all interrupts, including disabled interrupts, can wakeup the processor.
When an event or interrupt becomes pending, the event signal wakes up the processor from WFE. If the
processor is not waiting for an event, the event is registered and affects the next WFE.
The processor also wakes up on execution of an SEV instruction or an external event.