cc3220sf/gprcm/
nwp_lpds_wakeup_src.rs

1#[doc = "Reader of register NWP_LPDS_WAKEUP_SRC"]
2pub type R = crate::R<u32, super::NWP_LPDS_WAKEUP_SRC>;
3#[doc = "Writer for register NWP_LPDS_WAKEUP_SRC"]
4pub type W = crate::W<u32, super::NWP_LPDS_WAKEUP_SRC>;
5#[doc = "Register NWP_LPDS_WAKEUP_SRC `reset()`'s with value 0"]
6impl crate::ResetValue for super::NWP_LPDS_WAKEUP_SRC {
7    type Type = u32;
8    #[inline(always)]
9    fn reset_value() -> Self::Type {
10        0
11    }
12}
13#[doc = "Reader of field `NWP_LPDS_WAKEUP_SRC`"]
14pub type NWP_LPDS_WAKEUP_SRC_R = crate::R<u8, u8>;
15#[doc = "Write proxy for field `NWP_LPDS_WAKEUP_SRC`"]
16pub struct NWP_LPDS_WAKEUP_SRC_W<'a> {
17    w: &'a mut W,
18}
19impl<'a> NWP_LPDS_WAKEUP_SRC_W<'a> {
20    #[doc = r"Writes raw bits to the field"]
21    #[inline(always)]
22    pub unsafe fn bits(self, value: u8) -> &'a mut W {
23        self.w.bits = (self.w.bits & !0xff) | ((value as u32) & 0xff);
24        self.w
25    }
26}
27impl R {
28    #[doc = "Bits 0:7 - Indicates the cause for NWP LPDS-Wakeup : 7 - WLAN Host Interrupt ; 6 - WLAN to NWP Wake request ; 5 - APPS to NWP Wake request; 4 - GPIO Wakeup ; 3 - Autonomous UART Wakeup ; 2 - SSDIO Wakeup ; 1 - Autonomous SPI Wakeup ; 0 - LPDS Wakeup-timer"]
29    #[inline(always)]
30    pub fn nwp_lpds_wakeup_src(&self) -> NWP_LPDS_WAKEUP_SRC_R {
31        NWP_LPDS_WAKEUP_SRC_R::new((self.bits & 0xff) as u8)
32    }
33}
34impl W {
35    #[doc = "Bits 0:7 - Indicates the cause for NWP LPDS-Wakeup : 7 - WLAN Host Interrupt ; 6 - WLAN to NWP Wake request ; 5 - APPS to NWP Wake request; 4 - GPIO Wakeup ; 3 - Autonomous UART Wakeup ; 2 - SSDIO Wakeup ; 1 - Autonomous SPI Wakeup ; 0 - LPDS Wakeup-timer"]
36    #[inline(always)]
37    pub fn nwp_lpds_wakeup_src(&mut self) -> NWP_LPDS_WAKEUP_SRC_W {
38        NWP_LPDS_WAKEUP_SRC_W { w: self }
39    }
40}