Skip to content

Commit 5a04b9f

Browse files
authored
Merge pull request #3751 from embassy-rs/embassy-stm32-release-v0.2
Release embassy-stm32 v0.2.0
2 parents 92326f1 + 593d997 commit 5a04b9f

File tree

45 files changed

+319
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+319
-44
lines changed

docs/examples/layer-by-layer/blinky-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
cortex-m = "0.7"
99
cortex-m-rt = "0.7"
10-
embassy-stm32 = { version = "0.1.0", features = ["stm32l475vg", "memory-x", "exti"] }
10+
embassy-stm32 = { version = "0.2.0", features = ["stm32l475vg", "memory-x", "exti"] }
1111
embassy-executor = { version = "0.6.3", features = ["arch-cortex-m", "executor-thread"] }
1212

1313
defmt = "0.3.0"

docs/examples/layer-by-layer/blinky-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
cortex-m = "0.7"
99
cortex-m-rt = "0.7"
10-
embassy-stm32 = { version = "0.1.0", features = ["stm32l475vg", "memory-x"] }
10+
embassy-stm32 = { version = "0.2.0", features = ["stm32l475vg", "memory-x"] }
1111

1212
defmt = "0.3.0"
1313
defmt-rtt = "0.3.0"

docs/examples/layer-by-layer/blinky-irq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
cortex-m = "0.7"
99
cortex-m-rt = { version = "0.7" }
10-
embassy-stm32 = { version = "0.1.0", features = ["stm32l475vg", "memory-x", "unstable-pac"] }
10+
embassy-stm32 = { version = "0.2.0", features = ["stm32l475vg", "memory-x", "unstable-pac"] }
1111

1212
defmt = "0.3.0"
1313
defmt-rtt = "0.3.0"

embassy-boot-stm32/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defmt = { version = "0.3", optional = true }
2525
log = { version = "0.4", optional = true }
2626

2727
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
28-
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", default-features = false }
28+
embassy-stm32 = { version = "0.2.0", path = "../embassy-stm32", default-features = false }
2929
embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
3030
cortex-m = { version = "0.7.6" }
3131
cortex-m-rt = { version = "0.7" }

embassy-stm32-wpan/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ features = ["stm32wb55rg", "ble", "mac"]
1919
features = ["stm32wb55rg", "ble", "mac"]
2020

2121
[dependencies]
22-
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32" }
22+
embassy-stm32 = { version = "0.2.0", path = "../embassy-stm32" }
2323
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
2424
embassy-time = { version = "0.4.0", path = "../embassy-time", optional = true }
2525
embassy-futures = { version = "0.1.0", path = "../embassy-futures" }

embassy-stm32/CHANGELOG.md

Lines changed: 275 additions & 0 deletions
Large diffs are not rendered by default.

embassy-stm32/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-stm32"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Embassy Hardware Abstraction Layer (HAL) for ST STM32 series microcontrollers"

examples/boot/application/stm32f3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
embassy-sync = { version = "0.6.1", path = "../../../../embassy-sync" }
99
embassy-executor = { version = "0.7.0", path = "../../../../embassy-executor", features = ["task-arena-size-8192", "arch-cortex-m", "executor-thread"] }
1010
embassy-time = { version = "0.4.0", path = "../../../../embassy-time", features = [ "tick-hz-32_768"] }
11-
embassy-stm32 = { version = "0.1.0", path = "../../../../embassy-stm32", features = ["stm32f303re", "time-driver-any", "exti"] }
11+
embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32f303re", "time-driver-any", "exti"] }
1212
embassy-boot-stm32 = { version = "0.2.0", path = "../../../../embassy-boot-stm32" }
1313
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }
1414

examples/boot/application/stm32f7/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
embassy-sync = { version = "0.6.1", path = "../../../../embassy-sync" }
99
embassy-executor = { version = "0.7.0", path = "../../../../embassy-executor", features = ["task-arena-size-8192", "arch-cortex-m", "executor-thread"] }
1010
embassy-time = { version = "0.4.0", path = "../../../../embassy-time", features = [ "tick-hz-32_768"] }
11-
embassy-stm32 = { version = "0.1.0", path = "../../../../embassy-stm32", features = ["stm32f767zi", "time-driver-any", "exti"] }
11+
embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32f767zi", "time-driver-any", "exti"] }
1212
embassy-boot-stm32 = { version = "0.2.0", path = "../../../../embassy-boot-stm32", features = [] }
1313
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }
1414

examples/boot/application/stm32h7/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
embassy-sync = { version = "0.6.1", path = "../../../../embassy-sync" }
99
embassy-executor = { version = "0.7.0", path = "../../../../embassy-executor", features = ["task-arena-size-8192", "arch-cortex-m", "executor-thread"] }
1010
embassy-time = { version = "0.4.0", path = "../../../../embassy-time", features = [ "tick-hz-32_768"] }
11-
embassy-stm32 = { version = "0.1.0", path = "../../../../embassy-stm32", features = ["stm32h743zi", "time-driver-any", "exti"] }
11+
embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32h743zi", "time-driver-any", "exti"] }
1212
embassy-boot-stm32 = { version = "0.2.0", path = "../../../../embassy-boot-stm32", features = [] }
1313
embassy-embedded-hal = { version = "0.3.0", path = "../../../../embassy-embedded-hal" }
1414

0 commit comments

Comments
 (0)