efm32gg12b810 0.1.0

Peripheral access API for EFM32GG12B810 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register IF"]
pub type R = crate::R<u32, super::IF>;
#[doc = "Reader of field `PPUPRIV`"]
pub type PPUPRIV_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - PPU Privilege Interrupt Flag"]
    #[inline(always)]
    pub fn ppupriv(&self) -> PPUPRIV_R {
        PPUPRIV_R::new((self.bits & 0x01) != 0)
    }
}