aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-09-16 15:20:55 +0000
committerGitHub <[email protected]>2023-09-16 15:20:55 +0000
commit044b837caaa90ce4a52a2f2f5be8a657e6ff61a7 (patch)
treefeb2e87b6df5784a001f9679ae029acf4ca91336
parentb5fffbf66fbbdf8f2dcb57097cf7d92696dd2431 (diff)
parentad0a306ea52f7d842efa8ce40c89f462501ed018 (diff)
Merge pull request #1914 from xoviat/fix-wpan
stm32: fix wpan_ble test
-rwxr-xr-xci.sh2
-rw-r--r--embassy-stm32/src/rcc/wb.rs2
2 files changed, 1 insertions, 3 deletions
diff --git a/ci.sh b/ci.sh
index a3d9ef81a..87f47487d 100755
--- a/ci.sh
+++ b/ci.sh
@@ -182,6 +182,4 @@ if [[ -z "${TELEPROBE_TOKEN-}" ]]; then
182 exit 182 exit
183fi 183fi
184 184
185rm out/tests/stm32wb55rg/wpan_ble
186
187teleprobe client run -r out/tests 185teleprobe client run -r out/tests
diff --git a/embassy-stm32/src/rcc/wb.rs b/embassy-stm32/src/rcc/wb.rs
index d90a50cf4..f003f6d7d 100644
--- a/embassy-stm32/src/rcc/wb.rs
+++ b/embassy-stm32/src/rcc/wb.rs
@@ -135,7 +135,7 @@ pub const WPAN_DEFAULT: Config = Config {
135 prediv: 2, 135 prediv: 2,
136 }), 136 }),
137 pll48: None, 137 pll48: None,
138 rtc: None, 138 rtc: Some(RtcClockSource::LSE),
139 139
140 pll: Some(Pll { 140 pll: Some(Pll {
141 mul: 12, 141 mul: 12,