esp32s3/wcl/
core_1_statustable_current.rs1#[doc = "Register `Core_1_STATUSTABLE_CURRENT` reader"]
2pub type R = crate::R<CORE_1_STATUSTABLE_CURRENT_SPEC>;
3#[doc = "Register `Core_1_STATUSTABLE_CURRENT` writer"]
4pub type W = crate::W<CORE_1_STATUSTABLE_CURRENT_SPEC>;
5#[doc = "Field `CORE_1_STATUSTABLE_CURRENT` reader - This field is used to quickly read and rewrite the current field of all STATUSTABLE registers,for example,bit 1 represents the current field of STATUSTABLE1"]
6pub type CORE_1_STATUSTABLE_CURRENT_R = crate::FieldReader<u16>;
7#[doc = "Field `CORE_1_STATUSTABLE_CURRENT` writer - This field is used to quickly read and rewrite the current field of all STATUSTABLE registers,for example,bit 1 represents the current field of STATUSTABLE1"]
8pub type CORE_1_STATUSTABLE_CURRENT_W<'a, REG> = crate::FieldWriter<'a, REG, 13, u16>;
9impl R {
10 #[doc = "Bits 1:13 - This field is used to quickly read and rewrite the current field of all STATUSTABLE registers,for example,bit 1 represents the current field of STATUSTABLE1"]
11 #[inline(always)]
12 pub fn core_1_statustable_current(&self) -> CORE_1_STATUSTABLE_CURRENT_R {
13 CORE_1_STATUSTABLE_CURRENT_R::new(((self.bits >> 1) & 0x1fff) as u16)
14 }
15}
16#[cfg(feature = "impl-register-debug")]
17impl core::fmt::Debug for R {
18 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
19 f.debug_struct("Core_1_STATUSTABLE_CURRENT")
20 .field(
21 "core_1_statustable_current",
22 &self.core_1_statustable_current(),
23 )
24 .finish()
25 }
26}
27impl W {
28 #[doc = "Bits 1:13 - This field is used to quickly read and rewrite the current field of all STATUSTABLE registers,for example,bit 1 represents the current field of STATUSTABLE1"]
29 #[inline(always)]
30 pub fn core_1_statustable_current(
31 &mut self,
32 ) -> CORE_1_STATUSTABLE_CURRENT_W<CORE_1_STATUSTABLE_CURRENT_SPEC> {
33 CORE_1_STATUSTABLE_CURRENT_W::new(self, 1)
34 }
35}
36#[doc = "Status register of statustable current\n\nYou can [`read`](crate::Reg::read) this register and get [`core_1_statustable_current::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`core_1_statustable_current::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct CORE_1_STATUSTABLE_CURRENT_SPEC;
38impl crate::RegisterSpec for CORE_1_STATUSTABLE_CURRENT_SPEC {
39 type Ux = u32;
40}
41#[doc = "`read()` method returns [`core_1_statustable_current::R`](R) reader structure"]
42impl crate::Readable for CORE_1_STATUSTABLE_CURRENT_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`core_1_statustable_current::W`](W) writer structure"]
44impl crate::Writable for CORE_1_STATUSTABLE_CURRENT_SPEC {
45 type Safety = crate::Unsafe;
46 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
47 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
48}
49#[doc = "`reset()` method sets Core_1_STATUSTABLE_CURRENT to value 0"]
50impl crate::Resettable for CORE_1_STATUSTABLE_CURRENT_SPEC {
51 const RESET_VALUE: u32 = 0;
52}