esp32c5 0.2.2

Peripheral access crate for the ESP32-C5
Documentation
#[doc = "Register `CACHE_PRELOCK_CONF` reader"]
pub type R = crate::R<CACHE_PRELOCK_CONF_SPEC>;
#[doc = "Register `CACHE_PRELOCK_CONF` writer"]
pub type W = crate::W<CACHE_PRELOCK_CONF_SPEC>;
#[doc = "Field `CACHE_PRELOCK_SCT0_EN` reader - The bit is used to enable the first section of prelock function on Cache."]
pub type CACHE_PRELOCK_SCT0_EN_R = crate::BitReader;
#[doc = "Field `CACHE_PRELOCK_SCT0_EN` writer - The bit is used to enable the first section of prelock function on Cache."]
pub type CACHE_PRELOCK_SCT0_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CACHE_PRELOCK_SCT1_EN` reader - The bit is used to enable the second section of prelock function on Cache."]
pub type CACHE_PRELOCK_SCT1_EN_R = crate::BitReader;
#[doc = "Field `CACHE_PRELOCK_SCT1_EN` writer - The bit is used to enable the second section of prelock function on Cache."]
pub type CACHE_PRELOCK_SCT1_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CACHE_PRELOCK_RGID` reader - The bit is used to set the gid of cache prelock."]
pub type CACHE_PRELOCK_RGID_R = crate::FieldReader;
impl R {
    #[doc = "Bit 0 - The bit is used to enable the first section of prelock function on Cache."]
    #[inline(always)]
    pub fn cache_prelock_sct0_en(&self) -> CACHE_PRELOCK_SCT0_EN_R {
        CACHE_PRELOCK_SCT0_EN_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - The bit is used to enable the second section of prelock function on Cache."]
    #[inline(always)]
    pub fn cache_prelock_sct1_en(&self) -> CACHE_PRELOCK_SCT1_EN_R {
        CACHE_PRELOCK_SCT1_EN_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bits 2:5 - The bit is used to set the gid of cache prelock."]
    #[inline(always)]
    pub fn cache_prelock_rgid(&self) -> CACHE_PRELOCK_RGID_R {
        CACHE_PRELOCK_RGID_R::new(((self.bits >> 2) & 0x0f) as u8)
    }
}
#[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("CACHE_PRELOCK_CONF")
            .field("cache_prelock_sct0_en", &self.cache_prelock_sct0_en())
            .field("cache_prelock_sct1_en", &self.cache_prelock_sct1_en())
            .field("cache_prelock_rgid", &self.cache_prelock_rgid())
            .finish()
    }
}
impl W {
    #[doc = "Bit 0 - The bit is used to enable the first section of prelock function on Cache."]
    #[inline(always)]
    pub fn cache_prelock_sct0_en(
        &mut self,
    ) -> CACHE_PRELOCK_SCT0_EN_W<'_, CACHE_PRELOCK_CONF_SPEC> {
        CACHE_PRELOCK_SCT0_EN_W::new(self, 0)
    }
    #[doc = "Bit 1 - The bit is used to enable the second section of prelock function on Cache."]
    #[inline(always)]
    pub fn cache_prelock_sct1_en(
        &mut self,
    ) -> CACHE_PRELOCK_SCT1_EN_W<'_, CACHE_PRELOCK_CONF_SPEC> {
        CACHE_PRELOCK_SCT1_EN_W::new(self, 1)
    }
}
#[doc = "Cache prelock configure register\n\nYou can [`read`](crate::Reg::read) this register and get [`cache_prelock_conf::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`cache_prelock_conf::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CACHE_PRELOCK_CONF_SPEC;
impl crate::RegisterSpec for CACHE_PRELOCK_CONF_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`cache_prelock_conf::R`](R) reader structure"]
impl crate::Readable for CACHE_PRELOCK_CONF_SPEC {}
#[doc = "`write(|w| ..)` method takes [`cache_prelock_conf::W`](W) writer structure"]
impl crate::Writable for CACHE_PRELOCK_CONF_SPEC {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets CACHE_PRELOCK_CONF to value 0"]
impl crate::Resettable for CACHE_PRELOCK_CONF_SPEC {}