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