mcxa-pac 0.1.1

Peripheral Access Crate for MCXA256 devices
Documentation
#[doc = "Register `MCCR1` reader"]
pub type R = crate::R<Mccr1Spec>;
#[doc = "Register `MCCR1` writer"]
pub type W = crate::W<Mccr1Spec>;
#[doc = "Field `CLKLO` reader - Clock Low Period"]
pub type ClkloR = crate::FieldReader;
#[doc = "Field `CLKLO` writer - Clock Low Period"]
pub type ClkloW<'a, REG> = crate::FieldWriter<'a, REG, 6>;
#[doc = "Field `CLKHI` reader - Clock High Period"]
pub type ClkhiR = crate::FieldReader;
#[doc = "Field `CLKHI` writer - Clock High Period"]
pub type ClkhiW<'a, REG> = crate::FieldWriter<'a, REG, 6>;
#[doc = "Field `SETHOLD` reader - Setup Hold Delay"]
pub type SetholdR = crate::FieldReader;
#[doc = "Field `SETHOLD` writer - Setup Hold Delay"]
pub type SetholdW<'a, REG> = crate::FieldWriter<'a, REG, 6>;
#[doc = "Field `DATAVD` reader - Data Valid Delay"]
pub type DatavdR = crate::FieldReader;
#[doc = "Field `DATAVD` writer - Data Valid Delay"]
pub type DatavdW<'a, REG> = crate::FieldWriter<'a, REG, 6>;
impl R {
    #[doc = "Bits 0:5 - Clock Low Period"]
    #[inline(always)]
    pub fn clklo(&self) -> ClkloR {
        ClkloR::new((self.bits & 0x3f) as u8)
    }
    #[doc = "Bits 8:13 - Clock High Period"]
    #[inline(always)]
    pub fn clkhi(&self) -> ClkhiR {
        ClkhiR::new(((self.bits >> 8) & 0x3f) as u8)
    }
    #[doc = "Bits 16:21 - Setup Hold Delay"]
    #[inline(always)]
    pub fn sethold(&self) -> SetholdR {
        SetholdR::new(((self.bits >> 16) & 0x3f) as u8)
    }
    #[doc = "Bits 24:29 - Data Valid Delay"]
    #[inline(always)]
    pub fn datavd(&self) -> DatavdR {
        DatavdR::new(((self.bits >> 24) & 0x3f) as u8)
    }
}
#[cfg(feature = "debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("MCCR1")
            .field("clklo", &self.clklo())
            .field("clkhi", &self.clkhi())
            .field("sethold", &self.sethold())
            .field("datavd", &self.datavd())
            .finish()
    }
}
impl W {
    #[doc = "Bits 0:5 - Clock Low Period"]
    #[inline(always)]
    pub fn clklo(&mut self) -> ClkloW<'_, Mccr1Spec> {
        ClkloW::new(self, 0)
    }
    #[doc = "Bits 8:13 - Clock High Period"]
    #[inline(always)]
    pub fn clkhi(&mut self) -> ClkhiW<'_, Mccr1Spec> {
        ClkhiW::new(self, 8)
    }
    #[doc = "Bits 16:21 - Setup Hold Delay"]
    #[inline(always)]
    pub fn sethold(&mut self) -> SetholdW<'_, Mccr1Spec> {
        SetholdW::new(self, 16)
    }
    #[doc = "Bits 24:29 - Data Valid Delay"]
    #[inline(always)]
    pub fn datavd(&mut self) -> DatavdW<'_, Mccr1Spec> {
        DatavdW::new(self, 24)
    }
}
#[doc = "Controller Clock Configuration 1\n\nYou can [`read`](crate::Reg::read) this register and get [`mccr1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`mccr1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Mccr1Spec;
impl crate::RegisterSpec for Mccr1Spec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`mccr1::R`](R) reader structure"]
impl crate::Readable for Mccr1Spec {}
#[doc = "`write(|w| ..)` method takes [`mccr1::W`](W) writer structure"]
impl crate::Writable for Mccr1Spec {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets MCCR1 to value 0"]
impl crate::Resettable for Mccr1Spec {}