tm4c129x/hib/tplog6.rs
1#[doc = "Reader of register TPLOG6"]
2pub type R = crate::R<u32, super::TPLOG6>;
3#[doc = "Reader of field `TIME`"]
4pub type TIME_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - Tamper Log Calendar Information"]
7 #[inline(always)]
8 pub fn time(&self) -> TIME_R {
9 TIME_R::new((self.bits & 0xffff_ffff) as u32)
10 }
11}