aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-01-21 23:02:29 +0000
committerGitHub <[email protected]>2025-01-21 23:02:29 +0000
commit23cb93081e78ca04ad1b41e2902cf04d8626337e (patch)
treeed48775647405acce3d56a2d95d8efb94ef6aba6
parenteda51673f51459d1dc0e46b439e0a3bf8f639132 (diff)
parent3de0a21acad8b8ca7d803562548084c0726a15f2 (diff)
Merge pull request #3791 from embassy-rs/fix-split-pins
Fix issue with enabled split-pxy feature
-rwxr-xr-xci.sh2
-rw-r--r--embassy-stm32/build.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/ci.sh b/ci.sh
index 1aa206c1d..59bcab875 100755
--- a/ci.sh
+++ b/ci.sh
@@ -129,7 +129,7 @@ cargo batch \
129 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32f730i8,defmt,exti,time-driver-any,time \ 129 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32f730i8,defmt,exti,time-driver-any,time \
130 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h753zi,defmt,exti,time-driver-any,time \ 130 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h753zi,defmt,exti,time-driver-any,time \
131 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h735zg,defmt,exti,time-driver-any,time \ 131 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h735zg,defmt,exti,time-driver-any,time \
132 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h755zi-cm7,defmt,exti,time-driver-any,time \ 132 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h755zi-cm7,defmt,exti,time-driver-any,time,split-pc2,split-pc3 \
133 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h725re,defmt,exti,time-driver-any,time \ 133 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h725re,defmt,exti,time-driver-any,time \
134 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h7b3ai,defmt,exti,time-driver-any,time \ 134 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h7b3ai,defmt,exti,time-driver-any,time \
135 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h7b3ai,defmt,exti,time-driver-tim1,time \ 135 --- build --release --manifest-path embassy-stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h7b3ai,defmt,exti,time-driver-tim1,time \
diff --git a/embassy-stm32/build.rs b/embassy-stm32/build.rs
index 4abbf8d69..78569f7da 100644
--- a/embassy-stm32/build.rs
+++ b/embassy-stm32/build.rs
@@ -1534,7 +1534,7 @@ fn main() {
1534 // This should avoid unintended side-effects as much as possible. 1534 // This should avoid unintended side-effects as much as possible.
1535 #[cfg(feature = "_split-pins-enabled")] 1535 #[cfg(feature = "_split-pins-enabled")]
1536 for split_feature in &split_features { 1536 for split_feature in &split_features {
1537 if split_feature.pin_name_without_c == pin_name { 1537 if split_feature.pin_name_without_c == pin.name {
1538 pins_table.push(vec![ 1538 pins_table.push(vec![
1539 split_feature.pin_name_with_c.to_string(), 1539 split_feature.pin_name_with_c.to_string(),
1540 p.name.to_string(), 1540 p.name.to_string(),