stm32wb_pac/wwdg/
cr.rs

1#[doc = "Reader of register CR"]
2pub type R = crate::R<u32, super::CR>;
3#[doc = "Writer for register CR"]
4pub type W = crate::W<u32, super::CR>;
5#[doc = "Register CR `reset()`'s with value 0x7f"]
6impl crate::ResetValue for super::CR {
7    type Type = u32;
8    #[inline(always)]
9    fn reset_value() -> Self::Type {
10        0x7f
11    }
12}
13#[doc = "Reader of field `WDGA`"]
14pub type WDGA_R = crate::R<bool, bool>;
15#[doc = "Write proxy for field `WDGA`"]
16pub struct WDGA_W<'a> {
17    w: &'a mut W,
18}
19impl<'a> WDGA_W<'a> {
20    #[doc = r"Sets the field bit"]
21    #[inline(always)]
22    pub fn set_bit(self) -> &'a mut W {
23        self.bit(true)
24    }
25    #[doc = r"Clears the field bit"]
26    #[inline(always)]
27    pub fn clear_bit(self) -> &'a mut W {
28        self.bit(false)
29    }
30    #[doc = r"Writes raw bits to the field"]
31    #[inline(always)]
32    pub fn bit(self, value: bool) -> &'a mut W {
33        self.w.bits = (self.w.bits & !(0x01 << 7)) | (((value as u32) & 0x01) << 7);
34        self.w
35    }
36}
37#[doc = "Reader of field `T`"]
38pub type T_R = crate::R<u8, u8>;
39#[doc = "Write proxy for field `T`"]
40pub struct T_W<'a> {
41    w: &'a mut W,
42}
43impl<'a> T_W<'a> {
44    #[doc = r"Writes raw bits to the field"]
45    #[inline(always)]
46    pub unsafe fn bits(self, value: u8) -> &'a mut W {
47        self.w.bits = (self.w.bits & !0x7f) | ((value as u32) & 0x7f);
48        self.w
49    }
50}
51impl R {
52    #[doc = "Bit 7 - Activation bit"]
53    #[inline(always)]
54    pub fn wdga(&self) -> WDGA_R {
55        WDGA_R::new(((self.bits >> 7) & 0x01) != 0)
56    }
57    #[doc = "Bits 0:6 - 7-bit counter (MSB to LSB)"]
58    #[inline(always)]
59    pub fn t(&self) -> T_R {
60        T_R::new((self.bits & 0x7f) as u8)
61    }
62}
63impl W {
64    #[doc = "Bit 7 - Activation bit"]
65    #[inline(always)]
66    pub fn wdga(&mut self) -> WDGA_W {
67        WDGA_W { w: self }
68    }
69    #[doc = "Bits 0:6 - 7-bit counter (MSB to LSB)"]
70    #[inline(always)]
71    pub fn t(&mut self) -> T_W {
72        T_W { w: self }
73    }
74}