rp2040_pac/pwm/
ch.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct CH {
4    csr: CSR,
5    div: DIV,
6    ctr: CTR,
7    cc: CC,
8    top: TOP,
9}
10impl CH {
11    #[doc = "0x00 - Control and status register"]
12    #[inline(always)]
13    pub const fn csr(&self) -> &CSR {
14        &self.csr
15    }
16    #[doc = "0x04 - INT and FRAC form a fixed-point fractional number.  
17 Counting rate is system clock frequency divided by this number.  
18 Fractional division uses simple 1st-order sigma-delta."]
19    #[inline(always)]
20    pub const fn div(&self) -> &DIV {
21        &self.div
22    }
23    #[doc = "0x08 - Direct access to the PWM counter"]
24    #[inline(always)]
25    pub const fn ctr(&self) -> &CTR {
26        &self.ctr
27    }
28    #[doc = "0x0c - Counter compare values"]
29    #[inline(always)]
30    pub const fn cc(&self) -> &CC {
31        &self.cc
32    }
33    #[doc = "0x10 - Counter wrap value"]
34    #[inline(always)]
35    pub const fn top(&self) -> &TOP {
36        &self.top
37    }
38}
39#[doc = "CC (rw) register accessor: Counter compare values  
40
41You can [`read`](crate::generic::Reg::read) this register and get [`cc::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 [`cc::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
42
43For information about available fields see [`mod@cc`]
44module"]
45pub type CC = crate::Reg<cc::CC_SPEC>;
46#[doc = "Counter compare values"]
47pub mod cc;
48#[doc = "CSR (rw) register accessor: Control and status register  
49
50You can [`read`](crate::generic::Reg::read) this register and get [`csr::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 [`csr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
51
52For information about available fields see [`mod@csr`]
53module"]
54pub type CSR = crate::Reg<csr::CSR_SPEC>;
55#[doc = "Control and status register"]
56pub mod csr;
57#[doc = "CTR (rw) register accessor: Direct access to the PWM counter  
58
59You can [`read`](crate::generic::Reg::read) this register and get [`ctr::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 [`ctr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
60
61For information about available fields see [`mod@ctr`]
62module"]
63pub type CTR = crate::Reg<ctr::CTR_SPEC>;
64#[doc = "Direct access to the PWM counter"]
65pub mod ctr;
66#[doc = "DIV (rw) register accessor: INT and FRAC form a fixed-point fractional number.  
67 Counting rate is system clock frequency divided by this number.  
68 Fractional division uses simple 1st-order sigma-delta.  
69
70You can [`read`](crate::generic::Reg::read) this register and get [`div::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 [`div::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
71
72For information about available fields see [`mod@div`]
73module"]
74pub type DIV = crate::Reg<div::DIV_SPEC>;
75#[doc = "INT and FRAC form a fixed-point fractional number.  
76 Counting rate is system clock frequency divided by this number.  
77 Fractional division uses simple 1st-order sigma-delta."]
78pub mod div;
79#[doc = "TOP (rw) register accessor: Counter wrap value  
80
81You can [`read`](crate::generic::Reg::read) this register and get [`top::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 [`top::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).  
82
83For information about available fields see [`mod@top`]
84module"]
85pub type TOP = crate::Reg<top::TOP_SPEC>;
86#[doc = "Counter wrap value"]
87pub mod top;