1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = "Register `G5CYCN` reader"]
pub type R = crate::R<G5cycnSpec>;
#[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 [`g5cycn::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct G5cycnSpec;
impl crate::RegisterSpec for G5cycnSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`g5cycn::R`](R) reader structure"]
impl crate::Readable for G5cycnSpec {}
#[doc = "`reset()` method sets G5CYCN to value 0"]
impl crate::Resettable for G5cycnSpec {
    const RESET_VALUE: u32 = 0;
}