fomu_pac/version/dirty.rs
1#[doc = "Reader of register DIRTY"]
2pub type R = crate::R<u8, super::DIRTY>;
3#[doc = "Reader of field `dirty`"]
4pub type DIRTY_R = crate::R<bool, bool>;
5impl R {
6 #[doc = "Bit 0 - Set to ``1`` if this device was built from a git repo with uncommitted modifications."]
7 #[inline(always)]
8 pub fn dirty(&self) -> DIRTY_R {
9 DIRTY_R::new((self.bits & 0x01) != 0)
10 }
11}