esp32s3 0.35.1

Peripheral access crate for the ESP32-S3
Documentation
#[doc = "Register `SAR_TOUCH_APPR_STATUS` reader"]
pub type R = crate::R<SAR_TOUCH_APPR_STATUS_SPEC>;
#[doc = "Field `SAR_TOUCH_APPROACH_PAD2_CNT` reader - touch current approach count of approach pad2"]
pub type SAR_TOUCH_APPROACH_PAD2_CNT_R = crate::FieldReader;
#[doc = "Field `SAR_TOUCH_APPROACH_PAD1_CNT` reader - touch current approach count of approach pad1"]
pub type SAR_TOUCH_APPROACH_PAD1_CNT_R = crate::FieldReader;
#[doc = "Field `SAR_TOUCH_APPROACH_PAD0_CNT` reader - touch current approach count of approach pad0"]
pub type SAR_TOUCH_APPROACH_PAD0_CNT_R = crate::FieldReader;
#[doc = "Field `SAR_TOUCH_SLP_APPROACH_CNT` reader - touch current approach count of slp pad"]
pub type SAR_TOUCH_SLP_APPROACH_CNT_R = crate::FieldReader;
impl R {
    #[doc = "Bits 0:7 - touch current approach count of approach pad2"]
    #[inline(always)]
    pub fn sar_touch_approach_pad2_cnt(&self) -> SAR_TOUCH_APPROACH_PAD2_CNT_R {
        SAR_TOUCH_APPROACH_PAD2_CNT_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - touch current approach count of approach pad1"]
    #[inline(always)]
    pub fn sar_touch_approach_pad1_cnt(&self) -> SAR_TOUCH_APPROACH_PAD1_CNT_R {
        SAR_TOUCH_APPROACH_PAD1_CNT_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:23 - touch current approach count of approach pad0"]
    #[inline(always)]
    pub fn sar_touch_approach_pad0_cnt(&self) -> SAR_TOUCH_APPROACH_PAD0_CNT_R {
        SAR_TOUCH_APPROACH_PAD0_CNT_R::new(((self.bits >> 16) & 0xff) as u8)
    }
    #[doc = "Bits 24:31 - touch current approach count of slp pad"]
    #[inline(always)]
    pub fn sar_touch_slp_approach_cnt(&self) -> SAR_TOUCH_SLP_APPROACH_CNT_R {
        SAR_TOUCH_SLP_APPROACH_CNT_R::new(((self.bits >> 24) & 0xff) 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("SAR_TOUCH_APPR_STATUS")
            .field(
                "sar_touch_approach_pad2_cnt",
                &self.sar_touch_approach_pad2_cnt(),
            )
            .field(
                "sar_touch_approach_pad1_cnt",
                &self.sar_touch_approach_pad1_cnt(),
            )
            .field(
                "sar_touch_approach_pad0_cnt",
                &self.sar_touch_approach_pad0_cnt(),
            )
            .field(
                "sar_touch_slp_approach_cnt",
                &self.sar_touch_slp_approach_cnt(),
            )
            .finish()
    }
}
#[doc = "touch channel status of approach mode\n\nYou can [`read`](crate::Reg::read) this register and get [`sar_touch_appr_status::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct SAR_TOUCH_APPR_STATUS_SPEC;
impl crate::RegisterSpec for SAR_TOUCH_APPR_STATUS_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`sar_touch_appr_status::R`](R) reader structure"]
impl crate::Readable for SAR_TOUCH_APPR_STATUS_SPEC {}
#[doc = "`reset()` method sets SAR_TOUCH_APPR_STATUS to value 0"]
impl crate::Resettable for SAR_TOUCH_APPR_STATUS_SPEC {}