esp32s3 0.19.0

Peripheral access crate for the ESP32-S3
Documentation
#[doc = "Register `DTXFSTS0` reader"]
pub struct R(crate::R<DTXFSTS0_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<DTXFSTS0_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<DTXFSTS0_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<DTXFSTS0_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `D_INEPTXFSPCAVAIL0` reader - "]
pub type D_INEPTXFSPCAVAIL0_R = crate::FieldReader<u16>;
impl R {
    #[doc = "Bits 0:15"]
    #[inline(always)]
    pub fn d_ineptxfspcavail0(&self) -> D_INEPTXFSPCAVAIL0_R {
        D_INEPTXFSPCAVAIL0_R::new((self.bits & 0xffff) as u16)
    }
}
#[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("DTXFSTS0")
            .field(
                "d_ineptxfspcavail0",
                &format_args!("{}", self.d_ineptxfspcavail0().bits()),
            )
            .finish()
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<DTXFSTS0_SPEC> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        self.read().fmt(f)
    }
}
#[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 [dtxfsts0](index.html) module"]
pub struct DTXFSTS0_SPEC;
impl crate::RegisterSpec for DTXFSTS0_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [dtxfsts0::R](R) reader structure"]
impl crate::Readable for DTXFSTS0_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets DTXFSTS0 to value 0"]
impl crate::Resettable for DTXFSTS0_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}