1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = "Register `SM_P_START_ADR` reader"]
pub type R = crate::R<SM_P_START_ADR_SPEC>;
#[doc = "Field `FIRST_BYTE` reader - Specifies first byte that will be handled by SyncManager"]
pub type FIRST_BYTE_R = crate::FieldReader<u16>;
impl R {
    #[doc = "Bits 0:15 - Specifies first byte that will be handled by SyncManager"]
    #[inline(always)]
    pub fn first_byte(&self) -> FIRST_BYTE_R {
        FIRST_BYTE_R::new(self.bits)
    }
}
#[doc = "Physical Start Address SyncManager 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sm_p_start_adr::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct SM_P_START_ADR_SPEC;
impl crate::RegisterSpec for SM_P_START_ADR_SPEC {
    type Ux = u16;
}
#[doc = "`read()` method returns [`sm_p_start_adr::R`](R) reader structure"]
impl crate::Readable for SM_P_START_ADR_SPEC {}
#[doc = "`reset()` method sets SM_P_START_ADR to value 0"]
impl crate::Resettable for SM_P_START_ADR_SPEC {
    const RESET_VALUE: u16 = 0;
}