rp2040_pac/usbctrl_dpram/
setup_packet_high.rs

1#[doc = "Register `SETUP_PACKET_HIGH` reader"]
2pub type R = crate::R<SETUP_PACKET_HIGH_SPEC>;
3#[doc = "Register `SETUP_PACKET_HIGH` writer"]
4pub type W = crate::W<SETUP_PACKET_HIGH_SPEC>;
5#[doc = "Field `WINDEX` reader - "]
6pub type WINDEX_R = crate::FieldReader<u16>;
7#[doc = "Field `WINDEX` writer - "]
8pub type WINDEX_W<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
9#[doc = "Field `WLENGTH` reader - "]
10pub type WLENGTH_R = crate::FieldReader<u16>;
11#[doc = "Field `WLENGTH` writer - "]
12pub type WLENGTH_W<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
13impl R {
14    #[doc = "Bits 0:15"]
15    #[inline(always)]
16    pub fn windex(&self) -> WINDEX_R {
17        WINDEX_R::new((self.bits & 0xffff) as u16)
18    }
19    #[doc = "Bits 16:31"]
20    #[inline(always)]
21    pub fn wlength(&self) -> WLENGTH_R {
22        WLENGTH_R::new(((self.bits >> 16) & 0xffff) as u16)
23    }
24}
25impl W {
26    #[doc = "Bits 0:15"]
27    #[inline(always)]
28    #[must_use]
29    pub fn windex(&mut self) -> WINDEX_W<SETUP_PACKET_HIGH_SPEC> {
30        WINDEX_W::new(self, 0)
31    }
32    #[doc = "Bits 16:31"]
33    #[inline(always)]
34    #[must_use]
35    pub fn wlength(&mut self) -> WLENGTH_W<SETUP_PACKET_HIGH_SPEC> {
36        WLENGTH_W::new(self, 16)
37    }
38    #[doc = r" Writes raw bits to the register."]
39    #[doc = r""]
40    #[doc = r" # Safety"]
41    #[doc = r""]
42    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
43    #[inline(always)]
44    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
45        self.bits = bits;
46        self
47    }
48}
49#[doc = "Bytes 4-7 of the setup packet from the host.  
50
51You can [`read`](crate::generic::Reg::read) this register and get [`setup_packet_high::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`setup_packet_high::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
52pub struct SETUP_PACKET_HIGH_SPEC;
53impl crate::RegisterSpec for SETUP_PACKET_HIGH_SPEC {
54    type Ux = u32;
55}
56#[doc = "`read()` method returns [`setup_packet_high::R`](R) reader structure"]
57impl crate::Readable for SETUP_PACKET_HIGH_SPEC {}
58#[doc = "`write(|w| ..)` method takes [`setup_packet_high::W`](W) writer structure"]
59impl crate::Writable for SETUP_PACKET_HIGH_SPEC {
60    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
61    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
62}
63#[doc = "`reset()` method sets SETUP_PACKET_HIGH to value 0"]
64impl crate::Resettable for SETUP_PACKET_HIGH_SPEC {
65    const RESET_VALUE: u32 = 0;
66}