esp32 0.4.0

Peripheral access crate for the ESP32
Documentation
#[doc = "Reader of register GEN0_TSTMP_A"]
pub type R = crate::R<u32, super::GEN0_TSTMP_A>;
#[doc = "Writer for register GEN0_TSTMP_A"]
pub type W = crate::W<u32, super::GEN0_TSTMP_A>;
#[doc = "Register GEN0_TSTMP_A `reset()`'s with value 0"]
impl crate::ResetValue for super::GEN0_TSTMP_A {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Reader of field `GEN0_A`"]
pub type GEN0_A_R = crate::R<u16, u16>;
#[doc = "Write proxy for field `GEN0_A`"]
pub struct GEN0_A_W<'a> {
    w: &'a mut W,
}
impl<'a> GEN0_A_W<'a> {
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u16) -> &'a mut W {
        self.w.bits = (self.w.bits & !0xffff) | ((value as u32) & 0xffff);
        self.w
    }
}
impl R {
    #[doc = "Bits 0:15"]
    #[inline(always)]
    pub fn gen0_a(&self) -> GEN0_A_R {
        GEN0_A_R::new((self.bits & 0xffff) as u16)
    }
}
impl W {
    #[doc = "Bits 0:15"]
    #[inline(always)]
    pub fn gen0_a(&mut self) -> GEN0_A_W {
        GEN0_A_W { w: self }
    }
}