esp32p4 0.2.0

Peripheral access crate for the ESP32-P4
Documentation
#[doc = "Register `DMA_FRAME_INTERVAL` reader"]
pub type R = crate::R<DMA_FRAME_INTERVAL_SPEC>;
#[doc = "Register `DMA_FRAME_INTERVAL` writer"]
pub type W = crate::W<DMA_FRAME_INTERVAL_SPEC>;
#[doc = "Field `DMA_FRAME_SLOT` reader - this field configures the max frame_slot_cnt"]
pub type DMA_FRAME_SLOT_R = crate::FieldReader<u16>;
#[doc = "Field `DMA_FRAME_SLOT` writer - this field configures the max frame_slot_cnt"]
pub type DMA_FRAME_SLOT_W<'a, REG> = crate::FieldWriter<'a, REG, 10, u16>;
#[doc = "Field `DMA_FRAME_INTERVAL` reader - this field configures the max frame_interval_cnt, frame_interval_cnt increased by 1 when frame_slot_cnt if full"]
pub type DMA_FRAME_INTERVAL_R = crate::FieldReader<u32>;
#[doc = "Field `DMA_FRAME_INTERVAL` writer - this field configures the max frame_interval_cnt, frame_interval_cnt increased by 1 when frame_slot_cnt if full"]
pub type DMA_FRAME_INTERVAL_W<'a, REG> = crate::FieldWriter<'a, REG, 18, u32>;
#[doc = "Field `DMA_MULTIBLK_EN` reader - this bit configures enable multi-blk transfer, 0: disable, 1: enable"]
pub type DMA_MULTIBLK_EN_R = crate::BitReader;
#[doc = "Field `DMA_MULTIBLK_EN` writer - this bit configures enable multi-blk transfer, 0: disable, 1: enable"]
pub type DMA_MULTIBLK_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `EN` reader - this bit configures enable interval between frame transfer, 0: disable, 1: enable"]
pub type EN_R = crate::BitReader;
#[doc = "Field `EN` writer - this bit configures enable interval between frame transfer, 0: disable, 1: enable"]
pub type EN_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
    #[doc = "Bits 0:9 - this field configures the max frame_slot_cnt"]
    #[inline(always)]
    pub fn dma_frame_slot(&self) -> DMA_FRAME_SLOT_R {
        DMA_FRAME_SLOT_R::new((self.bits & 0x03ff) as u16)
    }
    #[doc = "Bits 10:27 - this field configures the max frame_interval_cnt, frame_interval_cnt increased by 1 when frame_slot_cnt if full"]
    #[inline(always)]
    pub fn dma_frame_interval(&self) -> DMA_FRAME_INTERVAL_R {
        DMA_FRAME_INTERVAL_R::new((self.bits >> 10) & 0x0003_ffff)
    }
    #[doc = "Bit 28 - this bit configures enable multi-blk transfer, 0: disable, 1: enable"]
    #[inline(always)]
    pub fn dma_multiblk_en(&self) -> DMA_MULTIBLK_EN_R {
        DMA_MULTIBLK_EN_R::new(((self.bits >> 28) & 1) != 0)
    }
    #[doc = "Bit 29 - this bit configures enable interval between frame transfer, 0: disable, 1: enable"]
    #[inline(always)]
    pub fn en(&self) -> EN_R {
        EN_R::new(((self.bits >> 29) & 1) != 0)
    }
}
#[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("DMA_FRAME_INTERVAL")
            .field(
                "dma_frame_slot",
                &format_args!("{}", self.dma_frame_slot().bits()),
            )
            .field(
                "dma_frame_interval",
                &format_args!("{}", self.dma_frame_interval().bits()),
            )
            .field(
                "dma_multiblk_en",
                &format_args!("{}", self.dma_multiblk_en().bit()),
            )
            .field("en", &format_args!("{}", self.en().bit()))
            .finish()
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<DMA_FRAME_INTERVAL_SPEC> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        core::fmt::Debug::fmt(&self.read(), f)
    }
}
impl W {
    #[doc = "Bits 0:9 - this field configures the max frame_slot_cnt"]
    #[inline(always)]
    #[must_use]
    pub fn dma_frame_slot(&mut self) -> DMA_FRAME_SLOT_W<DMA_FRAME_INTERVAL_SPEC> {
        DMA_FRAME_SLOT_W::new(self, 0)
    }
    #[doc = "Bits 10:27 - this field configures the max frame_interval_cnt, frame_interval_cnt increased by 1 when frame_slot_cnt if full"]
    #[inline(always)]
    #[must_use]
    pub fn dma_frame_interval(&mut self) -> DMA_FRAME_INTERVAL_W<DMA_FRAME_INTERVAL_SPEC> {
        DMA_FRAME_INTERVAL_W::new(self, 10)
    }
    #[doc = "Bit 28 - this bit configures enable multi-blk transfer, 0: disable, 1: enable"]
    #[inline(always)]
    #[must_use]
    pub fn dma_multiblk_en(&mut self) -> DMA_MULTIBLK_EN_W<DMA_FRAME_INTERVAL_SPEC> {
        DMA_MULTIBLK_EN_W::new(self, 28)
    }
    #[doc = "Bit 29 - this bit configures enable interval between frame transfer, 0: disable, 1: enable"]
    #[inline(always)]
    #[must_use]
    pub fn en(&mut self) -> EN_W<DMA_FRAME_INTERVAL_SPEC> {
        EN_W::new(self, 29)
    }
}
#[doc = "dsi_bridge dam frame interval control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dma_frame_interval::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dma_frame_interval::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DMA_FRAME_INTERVAL_SPEC;
impl crate::RegisterSpec for DMA_FRAME_INTERVAL_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`dma_frame_interval::R`](R) reader structure"]
impl crate::Readable for DMA_FRAME_INTERVAL_SPEC {}
#[doc = "`write(|w| ..)` method takes [`dma_frame_interval::W`](W) writer structure"]
impl crate::Writable for DMA_FRAME_INTERVAL_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 DMA_FRAME_INTERVAL to value 0x2000_2409"]
impl crate::Resettable for DMA_FRAME_INTERVAL_SPEC {
    const RESET_VALUE: u32 = 0x2000_2409;
}