stm32wb_pac/exti/hwcfgr7.rs
1#[doc = "Reader of register HWCFGR7"]
2pub type R = crate::R<u32, super::HWCFGR7>;
3#[doc = "Reader of field `CPUEVENT`"]
4pub type CPUEVENT_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - HW configuration CPU event generation"]
7 #[inline(always)]
8 pub fn cpuevent(&self) -> CPUEVENT_R {
9 CPUEVENT_R::new((self.bits & 0xffff_ffff) as u32)
10 }
11}