esp32c61 0.3.2

Peripheral access crate for the ESP32-C61
Documentation
#[doc = "Register `CACHE_ACS_FAIL_INT_CLR` writer"]
pub type W = crate::W<CACHE_ACS_FAIL_INT_CLR_SPEC>;
#[doc = "Field `ICACHE0_FAIL_INT_CLR` writer - The bit is used to clear interrupt of access fail that occurs in L1-ICache0 due to cpu accesses L1-ICache0."]
pub type ICACHE0_FAIL_INT_CLR_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `ICACHE1_FAIL_INT_CLR` writer - The bit is used to clear interrupt of access fail that occurs in L1-ICache1 due to cpu accesses L1-ICache1."]
pub type ICACHE1_FAIL_INT_CLR_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `ICACHE2_FAIL_INT_CLR` writer - Reserved"]
pub type ICACHE2_FAIL_INT_CLR_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `ICACHE3_FAIL_INT_CLR` writer - Reserved"]
pub type ICACHE3_FAIL_INT_CLR_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CACHE_FAIL_INT_CLR` writer - The bit is used to clear interrupt of access fail that occurs in L1-DCache due to cpu accesses L1-DCache."]
pub type CACHE_FAIL_INT_CLR_W<'a, REG> = crate::BitWriter<'a, REG>;
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<CACHE_ACS_FAIL_INT_CLR_SPEC> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "(not readable)")
    }
}
impl W {
    #[doc = "Bit 0 - The bit is used to clear interrupt of access fail that occurs in L1-ICache0 due to cpu accesses L1-ICache0."]
    #[inline(always)]
    pub fn icache0_fail_int_clr(
        &mut self,
    ) -> ICACHE0_FAIL_INT_CLR_W<'_, CACHE_ACS_FAIL_INT_CLR_SPEC> {
        ICACHE0_FAIL_INT_CLR_W::new(self, 0)
    }
    #[doc = "Bit 1 - The bit is used to clear interrupt of access fail that occurs in L1-ICache1 due to cpu accesses L1-ICache1."]
    #[inline(always)]
    pub fn icache1_fail_int_clr(
        &mut self,
    ) -> ICACHE1_FAIL_INT_CLR_W<'_, CACHE_ACS_FAIL_INT_CLR_SPEC> {
        ICACHE1_FAIL_INT_CLR_W::new(self, 1)
    }
    #[doc = "Bit 2 - Reserved"]
    #[inline(always)]
    pub fn icache2_fail_int_clr(
        &mut self,
    ) -> ICACHE2_FAIL_INT_CLR_W<'_, CACHE_ACS_FAIL_INT_CLR_SPEC> {
        ICACHE2_FAIL_INT_CLR_W::new(self, 2)
    }
    #[doc = "Bit 3 - Reserved"]
    #[inline(always)]
    pub fn icache3_fail_int_clr(
        &mut self,
    ) -> ICACHE3_FAIL_INT_CLR_W<'_, CACHE_ACS_FAIL_INT_CLR_SPEC> {
        ICACHE3_FAIL_INT_CLR_W::new(self, 3)
    }
    #[doc = "Bit 4 - The bit is used to clear interrupt of access fail that occurs in L1-DCache due to cpu accesses L1-DCache."]
    #[inline(always)]
    pub fn cache_fail_int_clr(&mut self) -> CACHE_FAIL_INT_CLR_W<'_, CACHE_ACS_FAIL_INT_CLR_SPEC> {
        CACHE_FAIL_INT_CLR_W::new(self, 4)
    }
}
#[doc = "L1-Cache Access Fail Interrupt clear register\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`cache_acs_fail_int_clr::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CACHE_ACS_FAIL_INT_CLR_SPEC;
impl crate::RegisterSpec for CACHE_ACS_FAIL_INT_CLR_SPEC {
    type Ux = u32;
}
#[doc = "`write(|w| ..)` method takes [`cache_acs_fail_int_clr::W`](W) writer structure"]
impl crate::Writable for CACHE_ACS_FAIL_INT_CLR_SPEC {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets CACHE_ACS_FAIL_INT_CLR to value 0"]
impl crate::Resettable for CACHE_ACS_FAIL_INT_CLR_SPEC {}