esp32s2/rtc_cntl/
ext_wakeup1.rs#[doc = "Register `EXT_WAKEUP1` reader"]
pub type R = crate::R<EXT_WAKEUP1_SPEC>;
#[doc = "Register `EXT_WAKEUP1` writer"]
pub type W = crate::W<EXT_WAKEUP1_SPEC>;
#[doc = "Field `SEL` reader - Selects a RTC GPIO to be the EXT1 wakeup source."]
pub type SEL_R = crate::FieldReader<u32>;
#[doc = "Field `SEL` writer - Selects a RTC GPIO to be the EXT1 wakeup source."]
pub type SEL_W<'a, REG> = crate::FieldWriter<'a, REG, 22, u32>;
#[doc = "Field `STATUS_CLR` writer - Clears the EXT1 wakeup status."]
pub type STATUS_CLR_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[doc = "Bits 0:21 - Selects a RTC GPIO to be the EXT1 wakeup source."]
#[inline(always)]
pub fn sel(&self) -> SEL_R {
SEL_R::new(self.bits & 0x003f_ffff)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("EXT_WAKEUP1")
.field("sel", &self.sel())
.finish()
}
}
impl W {
#[doc = "Bits 0:21 - Selects a RTC GPIO to be the EXT1 wakeup source."]
#[inline(always)]
pub fn sel(&mut self) -> SEL_W<EXT_WAKEUP1_SPEC> {
SEL_W::new(self, 0)
}
#[doc = "Bit 22 - Clears the EXT1 wakeup status."]
#[inline(always)]
pub fn status_clr(&mut self) -> STATUS_CLR_W<EXT_WAKEUP1_SPEC> {
STATUS_CLR_W::new(self, 22)
}
}
#[doc = "EXT1 wakeup configuration register\n\nYou can [`read`](crate::Reg::read) this register and get [`ext_wakeup1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ext_wakeup1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct EXT_WAKEUP1_SPEC;
impl crate::RegisterSpec for EXT_WAKEUP1_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`ext_wakeup1::R`](R) reader structure"]
impl crate::Readable for EXT_WAKEUP1_SPEC {}
#[doc = "`write(|w| ..)` method takes [`ext_wakeup1::W`](W) writer structure"]
impl crate::Writable for EXT_WAKEUP1_SPEC {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets EXT_WAKEUP1 to value 0"]
impl crate::Resettable for EXT_WAKEUP1_SPEC {
const RESET_VALUE: u32 = 0;
}