lpc54606-pac 0.1.0

Low-level register mappings for the NXP LPC54606 series of ARM Cortex-M4 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register SYNCFR"]
pub type R = crate::R<u32, super::SYNCFR>;
#[doc = "Reader of field `SyncFrequency`"]
pub type SYNCFREQUENCY_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:11 - Synchronization frequency. Default value is 1024."]
    #[inline(always)]
    pub fn sync_frequency(&self) -> SYNCFREQUENCY_R {
        SYNCFREQUENCY_R::new((self.bits & 0x0fff) as u16)
    }
}