We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c821c3f commit 7d65096Copy full SHA for 7d65096
src/dma/mdma.rs
@@ -1255,3 +1255,18 @@ peripheral_target_address!(
1255
(INNER: crate::xspi::Qspi<pac::QUADSPI>, dr, u32, P2M),
1256
(INNER: crate::xspi::Qspi<pac::QUADSPI>, dr, u32, M2P),
1257
);
1258
+
1259
+#[cfg(any(feature = "rm0468"))] // TODO feature = "rm0455"
1260
+peripheral_target_address!(
1261
+ (pac::OCTOSPI1, dr, u32, P2M),
1262
+ (pac::OCTOSPI1, dr, u32, M2P),
1263
+ (pac::OCTOSPI2, dr, u32, P2M),
1264
+ (pac::OCTOSPI2, dr, u32, M2P),
1265
+);
1266
+#[cfg(all(feature = "xspi", any(feature = "rm0468")))] // TODO feature = "rm0455"
1267
1268
+ (INNER: crate::xspi::Octospi<pac::OCTOSPI1>, dr, u32, P2M),
1269
+ (INNER: crate::xspi::Octospi<pac::OCTOSPI1>, dr, u32, M2P),
1270
+ (INNER: crate::xspi::Octospi<pac::OCTOSPI2>, dr, u32, P2M),
1271
+ (INNER: crate::xspi::Octospi<pac::OCTOSPI2>, dr, u32, M2P),
1272
0 commit comments