aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-03-26 16:29:45 +0000
committerGitHub <[email protected]>2024-03-26 16:29:45 +0000
commitf3a0bcb15eb7f7d1b2f9d948f8d487b76a4308fe (patch)
tree116aa9a8b9c756dc3dcf634ab3c1d86354436c4e /tests
parentcdd1c671e941798d30b05349190eddd63b15379b (diff)
parent402def86ee6a1d8695fc0a4cf157d1ffca7550d9 (diff)
Merge pull request #2737 from adri326/adri326/add-iosv-option
Add a config option to make the VDDIO2 supply line valid
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/src/common.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/stm32/src/common.rs b/tests/stm32/src/common.rs
index c379863a8..0e555efc8 100644
--- a/tests/stm32/src/common.rs
+++ b/tests/stm32/src/common.rs
@@ -251,13 +251,6 @@ define_peris!(
251); 251);
252 252
253pub fn config() -> Config { 253pub fn config() -> Config {
254 // Setting this bit is mandatory to use PG[15:2].
255 #[cfg(feature = "stm32u5a5zj")]
256 embassy_stm32::pac::PWR.svmcr().modify(|w| {
257 w.set_io2sv(true);
258 w.set_io2vmen(true);
259 });
260
261 #[allow(unused_mut)] 254 #[allow(unused_mut)]
262 let mut config = Config::default(); 255 let mut config = Config::default();
263 256