#[doc = "Register `DMA_RSTATUS` reader"]
pub struct R(crate::R<DMA_RSTATUS_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<DMA_RSTATUS_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<DMA_RSTATUS_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<DMA_RSTATUS_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Field `DMA_OUT_STATUS` reader - spi dma read data from memory status."]
pub type DMA_OUT_STATUS_R = crate::FieldReader<u32, u32>;
impl R {
#[doc = "Bits 0:31 - spi dma read data from memory status."]
#[inline(always)]
pub fn dma_out_status(&self) -> DMA_OUT_STATUS_R {
DMA_OUT_STATUS_R::new(self.bits)
}
}
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [dma_rstatus](index.html) module"]
pub struct DMA_RSTATUS_SPEC;
impl crate::RegisterSpec for DMA_RSTATUS_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [dma_rstatus::R](R) reader structure"]
impl crate::Readable for DMA_RSTATUS_SPEC {
type Reader = R;
}
#[doc = "`reset()` method sets DMA_RSTATUS to value 0"]
impl crate::Resettable for DMA_RSTATUS_SPEC {
const RESET_VALUE: Self::Ux = 0;
}