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