File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55Add support for NXP's i.MX RT 1189 dual-core MCUs. An ` "imxrt1189_cm33" ` feature
66targets the Cortex-M33, and an ` "imxrt1189_cm7" ` feature targets the Cortex-M7.
77
8+ Add the ` MASK[UPDATE_MASK] ` fields for FlexPWM on 1170 MCUs.
9+
810## [ 0.6.1] 2024-12-19
911
1012Remove the following peripheral instances from the 1176 API. The base address
Original file line number Diff line number Diff line change @@ -198,6 +198,15 @@ PWM?:
198198 bitWidth : 1
199199 access : read-write
200200
201+ # Missing in these SVDs, but documented in the reference manual.
202+ " PWM* " :
203+ MASK :
204+ _add :
205+ UPDATE_MASK :
206+ bitOffset : 12
207+ bitWidth : 4
208+ access : read-write
209+
201210MCM :
202211 _add :
203212 _interrupts :
Original file line number Diff line number Diff line change @@ -138,6 +138,15 @@ PWM?:
138138 bitWidth : 1
139139 access : read-write
140140
141+ # Missing in these SVDs, but documented in the reference manual.
142+ " PWM* " :
143+ MASK :
144+ _add :
145+ UPDATE_MASK :
146+ bitOffset : 12
147+ bitWidth : 4
148+ access : read-write
149+
141150CM7_MCM :
142151 _add :
143152 _interrupts :
Original file line number Diff line number Diff line change @@ -109,6 +109,13 @@ pub mod MASK {
109109 pub const MASKA_1 : u16 = 0x01 ;
110110 }
111111 }
112+ pub mod UPDATE_MASK {
113+ pub const offset: u16 = 12 ;
114+ pub const mask: u16 = 0x0f << offset;
115+ pub mod R { }
116+ pub mod W { }
117+ pub mod RW { }
118+ }
112119}
113120#[ doc = "Software Controlled Output Register" ]
114121pub mod SWCOUT {
You can’t perform that action at this time.
0 commit comments