esp32s2 0.31.2

Peripheral access crate for the ESP32-S2
Documentation
#[doc = "Register `OCCUPY_3` reader"]
pub type R = crate::R<OCCUPY_3_SPEC>;
#[doc = "Register `OCCUPY_3` writer"]
pub type W = crate::W<OCCUPY_3_SPEC>;
#[doc = "Field `OCCUPY_PRO_TRACE` reader - Configure one block of SRAM Block 4-21 is used as trace memory."]
pub type OCCUPY_PRO_TRACE_R = crate::FieldReader<u32>;
#[doc = "Field `OCCUPY_PRO_TRACE` writer - Configure one block of SRAM Block 4-21 is used as trace memory."]
pub type OCCUPY_PRO_TRACE_W<'a, REG> = crate::FieldWriter<'a, REG, 18, u32>;
impl R {
    #[doc = "Bits 0:17 - Configure one block of SRAM Block 4-21 is used as trace memory."]
    #[inline(always)]
    pub fn occupy_pro_trace(&self) -> OCCUPY_PRO_TRACE_R {
        OCCUPY_PRO_TRACE_R::new(self.bits & 0x0003_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("OCCUPY_3")
            .field("occupy_pro_trace", &self.occupy_pro_trace())
            .finish()
    }
}
impl W {
    #[doc = "Bits 0:17 - Configure one block of SRAM Block 4-21 is used as trace memory."]
    #[inline(always)]
    pub fn occupy_pro_trace(&mut self) -> OCCUPY_PRO_TRACE_W<'_, OCCUPY_3_SPEC> {
        OCCUPY_PRO_TRACE_W::new(self, 0)
    }
}
#[doc = "Occupy permission control register 3.\n\nYou can [`read`](crate::Reg::read) this register and get [`occupy_3::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`occupy_3::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct OCCUPY_3_SPEC;
impl crate::RegisterSpec for OCCUPY_3_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`occupy_3::R`](R) reader structure"]
impl crate::Readable for OCCUPY_3_SPEC {}
#[doc = "`write(|w| ..)` method takes [`occupy_3::W`](W) writer structure"]
impl crate::Writable for OCCUPY_3_SPEC {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets OCCUPY_3 to value 0"]
impl crate::Resettable for OCCUPY_3_SPEC {}