efm32pg1b_pac/idac0/
if_.rs1pub type R = crate::R<IFrs>;
3pub type AportconflictR = crate::BitReader;
5impl R {
6 #[inline(always)]
8 pub fn aportconflict(&self) -> AportconflictR {
9 AportconflictR::new(((self.bits >> 1) & 1) != 0)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("IF")
15 .field("aportconflict", &self.aportconflict())
16 .finish()
17 }
18}
19pub struct IFrs;
23impl crate::RegisterSpec for IFrs {
24 type Ux = u32;
25}
26impl crate::Readable for IFrs {}
28impl crate::Resettable for IFrs {
30 const RESET_VALUE: u32 = 0;
31}