esp32s3/systimer/
real_target.rs1#[repr(C)]
2#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
3#[doc = "Cluster REAL_TARGET%s, containing REAL_TARGET?_LO, REAL_TARGET?_HI"]
4pub struct REAL_TARGET {
5 lo: LO,
6 hi: HI,
7}
8impl REAL_TARGET {
9 #[doc = "0x00 - system timer comp0 actual target value low register"]
10 #[inline(always)]
11 pub const fn lo(&self) -> &LO {
12 &self.lo
13 }
14 #[doc = "0x04 - system timer comp0 actual target value high register"]
15 #[inline(always)]
16 pub const fn hi(&self) -> &HI {
17 &self.hi
18 }
19}
20#[doc = "LO (r) register accessor: system timer comp0 actual target value low register\n\nYou can [`read`](crate::Reg::read) this register and get [`lo::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lo`] module"]
21pub type LO = crate::Reg<lo::LO_SPEC>;
22#[doc = "system timer comp0 actual target value low register"]
23pub mod lo;
24#[doc = "HI (r) register accessor: system timer comp0 actual target value high register\n\nYou can [`read`](crate::Reg::read) this register and get [`hi::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hi`] module"]
25pub type HI = crate::Reg<hi::HI_SPEC>;
26#[doc = "system timer comp0 actual target value high register"]
27pub mod hi;