efm32gg11b820/csen/
status.rs

1#[doc = "Reader of register STATUS"]
2pub type R = crate::R<u32, super::STATUS>;
3#[doc = "Reader of field `CSENBUSY`"]
4pub type CSENBUSY_R = crate::R<bool, bool>;
5impl R {
6    #[doc = "Bit 0 - Busy Flag"]
7    #[inline(always)]
8    pub fn csenbusy(&self) -> CSENBUSY_R {
9        CSENBUSY_R::new((self.bits & 0x01) != 0)
10    }
11}