1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
#[doc = r" Register block"] #[repr(C)] pub struct RegisterBlock { #[doc = "0x00 - Pin Control Register n"] pub pcr: [PCR; 32], #[doc = "0x80 - Global Pin Control Low Register"] pub gpclr: GPCLR, #[doc = "0x84 - Global Pin Control High Register"] pub gpchr: GPCHR, _reserved0: [u8; 24usize], #[doc = "0xa0 - Interrupt Status Flag Register"] pub isfr: ISFR, _reserved1: [u8; 28usize], #[doc = "0xc0 - Digital Filter Enable Register"] pub dfer: DFER, #[doc = "0xc4 - Digital Filter Clock Register"] pub dfcr: DFCR, #[doc = "0xc8 - Digital Filter Width Register"] pub dfwr: DFWR, } #[doc = "Pin Control Register n"] pub struct PCR { register: ::vcell::VolatileCell<u32>, } #[doc = "Pin Control Register n"] pub mod pcr; #[doc = "Global Pin Control Low Register"] pub struct GPCLR { register: ::vcell::VolatileCell<u32>, } #[doc = "Global Pin Control Low Register"] pub mod gpclr; #[doc = "Global Pin Control High Register"] pub struct GPCHR { register: ::vcell::VolatileCell<u32>, } #[doc = "Global Pin Control High Register"] pub mod gpchr; #[doc = "Interrupt Status Flag Register"] pub struct ISFR { register: ::vcell::VolatileCell<u32>, } #[doc = "Interrupt Status Flag Register"] pub mod isfr; #[doc = "Digital Filter Enable Register"] pub struct DFER { register: ::vcell::VolatileCell<u32>, } #[doc = "Digital Filter Enable Register"] pub mod dfer; #[doc = "Digital Filter Clock Register"] pub struct DFCR { register: ::vcell::VolatileCell<u32>, } #[doc = "Digital Filter Clock Register"] pub mod dfcr; #[doc = "Digital Filter Width Register"] pub struct DFWR { register: ::vcell::VolatileCell<u32>, } #[doc = "Digital Filter Width Register"] pub mod dfwr;