esp32c3/systimer/
comp_load.rs

1#[doc = "Register `COMP%s_LOAD` writer"]
2pub type W = crate::W<COMP_LOAD_SPEC>;
3#[doc = "Field `LOAD` writer - timer comp0 load value"]
4pub type LOAD_W<'a, REG> = crate::BitWriter<'a, REG>;
5#[cfg(feature = "impl-register-debug")]
6impl core::fmt::Debug for crate::generic::Reg<COMP_LOAD_SPEC> {
7    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
8        write!(f, "(not readable)")
9    }
10}
11impl W {
12    #[doc = "Bit 0 - timer comp0 load value"]
13    #[inline(always)]
14    pub fn load(&mut self) -> LOAD_W<COMP_LOAD_SPEC> {
15        LOAD_W::new(self, 0)
16    }
17}
18#[doc = "SYSTIMER_COMP%s_LOAD.\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`comp_load::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
19pub struct COMP_LOAD_SPEC;
20impl crate::RegisterSpec for COMP_LOAD_SPEC {
21    type Ux = u32;
22}
23#[doc = "`write(|w| ..)` method takes [`comp_load::W`](W) writer structure"]
24impl crate::Writable for COMP_LOAD_SPEC {
25    type Safety = crate::Unsafe;
26    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
27    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
28}
29#[doc = "`reset()` method sets COMP%s_LOAD to value 0"]
30impl crate::Resettable for COMP_LOAD_SPEC {
31    const RESET_VALUE: u32 = 0;
32}