esp32h2 0.3.0

Peripheral access crate for the ESP32-H2
Documentation
#[doc = "Register `MAIN_STATE` reader"]
pub type R = crate::R<MAIN_STATE_SPEC>;
#[doc = "Field `MAIN_LAST_ST_STATE` reader - need_des"]
pub type MAIN_LAST_ST_STATE_R = crate::FieldReader;
#[doc = "Field `MAIN_TAR_ST_STATE` reader - need_des"]
pub type MAIN_TAR_ST_STATE_R = crate::FieldReader;
#[doc = "Field `MAIN_CUR_ST_STATE` reader - need_des"]
pub type MAIN_CUR_ST_STATE_R = crate::FieldReader;
impl R {
    #[doc = "Bits 11:17 - need_des"]
    #[inline(always)]
    pub fn main_last_st_state(&self) -> MAIN_LAST_ST_STATE_R {
        MAIN_LAST_ST_STATE_R::new(((self.bits >> 11) & 0x7f) as u8)
    }
    #[doc = "Bits 18:24 - need_des"]
    #[inline(always)]
    pub fn main_tar_st_state(&self) -> MAIN_TAR_ST_STATE_R {
        MAIN_TAR_ST_STATE_R::new(((self.bits >> 18) & 0x7f) as u8)
    }
    #[doc = "Bits 25:31 - need_des"]
    #[inline(always)]
    pub fn main_cur_st_state(&self) -> MAIN_CUR_ST_STATE_R {
        MAIN_CUR_ST_STATE_R::new(((self.bits >> 25) & 0x7f) 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("MAIN_STATE")
            .field(
                "main_last_st_state",
                &format_args!("{}", self.main_last_st_state().bits()),
            )
            .field(
                "main_tar_st_state",
                &format_args!("{}", self.main_tar_st_state().bits()),
            )
            .field(
                "main_cur_st_state",
                &format_args!("{}", self.main_cur_st_state().bits()),
            )
            .finish()
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<MAIN_STATE_SPEC> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        self.read().fmt(f)
    }
}
#[doc = "need_des\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`main_state::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct MAIN_STATE_SPEC;
impl crate::RegisterSpec for MAIN_STATE_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`main_state::R`](R) reader structure"]
impl crate::Readable for MAIN_STATE_SPEC {}
#[doc = "`reset()` method sets MAIN_STATE to value 0x0810_0800"]
impl crate::Resettable for MAIN_STATE_SPEC {
    const RESET_VALUE: Self::Ux = 0x0810_0800;
}