aboutsummaryrefslogtreecommitdiff
path: root/tests/stm32/src/bin/gpio.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-04-26 23:57:26 +0200
committerDario Nieuwenhuis <[email protected]>2022-04-27 01:16:14 +0200
commit009bb8e4e1b7afbe9d9d7d89135f8d4dd3c4e808 (patch)
treed734f3e82f9fb3c22b7517a70e1f47969624d248 /tests/stm32/src/bin/gpio.rs
parenta39d796c3de9c96ea4df6b9da525cb0d5ef60fc0 (diff)
stm32: add stm32u5 GPDMA, SPIv4 support, add HIL tests.
Diffstat (limited to 'tests/stm32/src/bin/gpio.rs')
-rw-r--r--tests/stm32/src/bin/gpio.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/stm32/src/bin/gpio.rs b/tests/stm32/src/bin/gpio.rs
index 41c10d45f..c7991953f 100644
--- a/tests/stm32/src/bin/gpio.rs
+++ b/tests/stm32/src/bin/gpio.rs
@@ -28,6 +28,8 @@ async fn main(_spawner: Spawner, p: Peripherals) {
28 let (mut a, mut b) = (p.PA3, p.PA2); 28 let (mut a, mut b) = (p.PA3, p.PA2);
29 #[cfg(feature = "stm32h755zi")] 29 #[cfg(feature = "stm32h755zi")]
30 let (mut a, mut b) = (p.PB6, p.PB7); 30 let (mut a, mut b) = (p.PB6, p.PB7);
31 #[cfg(feature = "stm32u585ai")]
32 let (mut a, mut b) = (p.PD9, p.PD8);
31 33
32 // Test initial output 34 // Test initial output
33 { 35 {