tm4c129x/sysctl/
pppwm.rs

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