tm4c129x/usb0/vdcris.rs
1#[doc = "Reader of register VDCRIS"]
2pub type R = crate::R<u32, super::VDCRIS>;
3#[doc = "Reader of field `VD`"]
4pub type VD_R = crate::R<bool, bool>;
5impl R {
6 #[doc = "Bit 0 - VBUS Droop Raw Interrupt Status"]
7 #[inline(always)]
8 pub fn vd(&self) -> VD_R {
9 VD_R::new((self.bits & 0x01) != 0)
10 }
11}