1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = "Register `G3CYCN` reader"]
pub type R = crate::R<G3cycnSpec>;
#[doc = "Field `CYCN` reader - Cycle number"]
pub type CycnR = crate::FieldReader<u16>;
impl R {
    #[doc = "Bits 0:13 - Cycle number"]
    #[inline(always)]
    pub fn cycn(&self) -> CycnR {
        CycnR::new((self.bits & 0x3fff) as u16)
    }
}
#[doc = "I/O group x cycle number register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`g3cycn::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct G3cycnSpec;
impl crate::RegisterSpec for G3cycnSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`g3cycn::R`](R) reader structure"]
impl crate::Readable for G3cycnSpec {}
#[doc = "`reset()` method sets G3CYCN to value 0"]
impl crate::Resettable for G3cycnSpec {
    const RESET_VALUE: u32 = 0;
}