nrf52840_pac/wdt/
rr.rs
1#[doc = "Register `RR[%s]` writer"]
2pub struct W(crate::W<RR_SPEC>);
3impl core::ops::Deref for W {
4 type Target = crate::W<RR_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl core::ops::DerefMut for W {
11 #[inline(always)]
12 fn deref_mut(&mut self) -> &mut Self::Target {
13 &mut self.0
14 }
15}
16impl From<crate::W<RR_SPEC>> for W {
17 #[inline(always)]
18 fn from(writer: crate::W<RR_SPEC>) -> Self {
19 W(writer)
20 }
21}
22#[doc = "Reload request register\n\nValue on reset: 0"]
23#[derive(Clone, Copy, Debug, PartialEq)]
24#[repr(u32)]
25pub enum RR_AW {
26 #[doc = "1850885685: Value to request a reload of the watchdog timer"]
27 RELOAD = 1850885685,
28}
29impl From<RR_AW> for u32 {
30 #[inline(always)]
31 fn from(variant: RR_AW) -> Self {
32 variant as _
33 }
34}
35#[doc = "Field `RR` writer - Reload request register"]
36pub type RR_W<'a, const O: u8> = crate::FieldWriter<'a, u32, RR_SPEC, u32, RR_AW, 32, O>;
37impl<'a, const O: u8> RR_W<'a, O> {
38 #[doc = "Value to request a reload of the watchdog timer"]
39 #[inline(always)]
40 pub fn reload(self) -> &'a mut W {
41 self.variant(RR_AW::RELOAD)
42 }
43}
44impl W {
45 #[doc = "Bits 0:31 - Reload request register"]
46 #[inline(always)]
47 pub fn rr(&mut self) -> RR_W<0> {
48 RR_W::new(self)
49 }
50 #[doc = "Writes raw bits to the register."]
51 #[inline(always)]
52 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
53 self.0.bits(bits);
54 self
55 }
56}
57#[doc = "Description collection\\[n\\]: Reload request n\n\nThis register you can [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [rr](index.html) module"]
58pub struct RR_SPEC;
59impl crate::RegisterSpec for RR_SPEC {
60 type Ux = u32;
61}
62#[doc = "`write(|w| ..)` method takes [rr::W](W) writer structure"]
63impl crate::Writable for RR_SPEC {
64 type Writer = W;
65}
66#[doc = "`reset()` method sets RR[%s]
67to value 0"]
68impl crate::Resettable for RR_SPEC {
69 #[inline(always)]
70 fn reset_value() -> Self::Ux {
71 0
72 }
73}