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