1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
///Register `TTTMK` reader
pub type R = crate::R<TTTMKrs>;
///Register `TTTMK` writer
pub type W = crate::W<TTTMKrs>;
///Field `TM` reader - Time Mark
pub type TM_R = crate::FieldReader<u16>;
///Field `TM` writer - Time Mark
pub type TM_W<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
///Field `TICC` reader - Time Mark Cycle Code
pub type TICC_R = crate::FieldReader;
///Field `TICC` writer - Time Mark Cycle Code
pub type TICC_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
///Field `LCKM` reader - TT Time Mark Register Locked
pub type LCKM_R = crate::BitReader;
///Field `LCKM` writer - TT Time Mark Register Locked
pub type LCKM_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
///Bits 0:15 - Time Mark
#[inline(always)]
pub fn tm(&self) -> TM_R {
TM_R::new((self.bits & 0xffff) as u16)
}
///Bits 16:22 - Time Mark Cycle Code
#[inline(always)]
pub fn ticc(&self) -> TICC_R {
TICC_R::new(((self.bits >> 16) & 0x7f) as u8)
}
///Bit 31 - TT Time Mark Register Locked
#[inline(always)]
pub fn lckm(&self) -> LCKM_R {
LCKM_R::new(((self.bits >> 31) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("TTTMK")
.field("tm", &self.tm())
.field("ticc", &self.ticc())
.field("lckm", &self.lckm())
.finish()
}
}
impl W {
///Bits 0:15 - Time Mark
#[inline(always)]
pub fn tm(&mut self) -> TM_W<TTTMKrs> {
TM_W::new(self, 0)
}
///Bits 16:22 - Time Mark Cycle Code
#[inline(always)]
pub fn ticc(&mut self) -> TICC_W<TTTMKrs> {
TICC_W::new(self, 16)
}
///Bit 31 - TT Time Mark Register Locked
#[inline(always)]
pub fn lckm(&mut self) -> LCKM_W<TTTMKrs> {
LCKM_W::new(self, 31)
}
}
/**FDCAN TT Time Mark Register
You can [`read`](crate::Reg::read) this register and get [`tttmk::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tttmk::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).*/
pub struct TTTMKrs;
impl crate::RegisterSpec for TTTMKrs {
type Ux = u32;
}
///`read()` method returns [`tttmk::R`](R) reader structure
impl crate::Readable for TTTMKrs {}
///`write(|w| ..)` method takes [`tttmk::W`](W) writer structure
impl crate::Writable for TTTMKrs {
type Safety = crate::Unsafe;
}
///`reset()` method sets TTTMK to value 0
impl crate::Resettable for TTTMKrs {}