#[doc = "Register `CWGR` reader"]
pub type R = crate::R<CwgrSpec>;
#[doc = "Register `CWGR` writer"]
pub type W = crate::W<CwgrSpec>;
#[doc = "Field `CLDIV` reader - Clock Low Divider"]
pub type CldivR = crate::FieldReader;
#[doc = "Field `CLDIV` writer - Clock Low Divider"]
pub type CldivW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `CHDIV` reader - Clock High Divider"]
pub type ChdivR = crate::FieldReader;
#[doc = "Field `CHDIV` writer - Clock High Divider"]
pub type ChdivW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `CKDIV` reader - Clock Divider"]
pub type CkdivR = crate::FieldReader;
#[doc = "Field `CKDIV` writer - Clock Divider"]
pub type CkdivW<'a, REG> = crate::FieldWriter<'a, REG, 3>;
impl R {
    #[doc = "Bits 0:7 - Clock Low Divider"]
    #[inline(always)]
    pub fn cldiv(&self) -> CldivR {
        CldivR::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - Clock High Divider"]
    #[inline(always)]
    pub fn chdiv(&self) -> ChdivR {
        ChdivR::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:18 - Clock Divider"]
    #[inline(always)]
    pub fn ckdiv(&self) -> CkdivR {
        CkdivR::new(((self.bits >> 16) & 7) as u8)
    }
}
impl W {
    #[doc = "Bits 0:7 - Clock Low Divider"]
    #[inline(always)]
    #[must_use]
    pub fn cldiv(&mut self) -> CldivW<CwgrSpec> {
        CldivW::new(self, 0)
    }
    #[doc = "Bits 8:15 - Clock High Divider"]
    #[inline(always)]
    #[must_use]
    pub fn chdiv(&mut self) -> ChdivW<CwgrSpec> {
        ChdivW::new(self, 8)
    }
    #[doc = "Bits 16:18 - Clock Divider"]
    #[inline(always)]
    #[must_use]
    pub fn ckdiv(&mut self) -> CkdivW<CwgrSpec> {
        CkdivW::new(self, 16)
    }
}
#[doc = "Clock Waveform Generator Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cwgr::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cwgr::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CwgrSpec;
impl crate::RegisterSpec for CwgrSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`cwgr::R`](R) reader structure"]
impl crate::Readable for CwgrSpec {}
#[doc = "`write(|w| ..)` method takes [`cwgr::W`](W) writer structure"]
impl crate::Writable for CwgrSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets CWGR to value 0"]
impl crate::Resettable for CwgrSpec {
    const RESET_VALUE: u32 = 0;
}