stm32wb_pac/pka/sidr.rs
1#[doc = "Reader of register SIDR"]
2pub type R = crate::R<u32, super::SIDR>;
3#[doc = "Reader of field `SID`"]
4pub type SID_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - Side Identification Code"]
7 #[inline(always)]
8 pub fn sid(&self) -> SID_R {
9 SID_R::new((self.bits & 0xffff_ffff) as u32)
10 }
11}