Skip to content

Commit 05df319

Browse files
committed
Release embassy-usb v0.4.0, embassy-usb-logger v0.4.0.
1 parent 4b0e203 commit 05df319

File tree

29 files changed

+50
-40
lines changed

29 files changed

+50
-40
lines changed

embassy-usb-dfu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ embassy-boot = { version = "0.4.0", path = "../embassy-boot" }
3535
embassy-futures = { version = "0.1.1", path = "../embassy-futures" }
3636
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
3737
embassy-time = { version = "0.4.0", path = "../embassy-time" }
38-
embassy-usb = { version = "0.3.0", path = "../embassy-usb", default-features = false }
38+
embassy-usb = { version = "0.4.0", path = "../embassy-usb", default-features = false }
3939
embedded-storage = { version = "0.3.1" }
4040
esp32c3-hal = { version = "0.13.0", optional = true, default-features = false }
4141

embassy-usb-logger/CHANGELOG.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10-
## 0.2.0 - 2024-05-20
10+
## 0.4.0 - 2025-01-15
1111

12-
### Added
12+
- Update `embassy-usb` to 0.4.0
1313

14-
- [#2414](https://github.com/embassy-rs/embassy/pull/2414) USB logger can now use an existing USB device (@JomerDev)
14+
(skipped v0.3.0 to align version numbers with `embassy-usb`)
1515

16-
### Changed
16+
## 0.2.0 - 2024-05-20
1717

1818
- Update `embassy-usb` to 0.2.0
19-
20-
### Fixed
21-
22-
- No more data loss at `Pipe` wraparound
23-
- [#2414](https://github.com/embassy-rs/embassy/pull/2414) Messages that are exactly `MAX_PACKET_SIZE` long are no
24-
longer delayed (@JomerDev)
19+
- Add support for using an existing USB device ([#2414](https://github.com/embassy-rs/embassy/pull/2414), @JomerDev)
20+
- Fix data loss at `Pipe` wraparound
21+
- Messages that are exactly `MAX_PACKET_SIZE` long are no longer delayed ([#2414](https://github.com/embassy-rs/embassy/pull/2414), @JomerDev)
2522

2623
## 0.1.0 - 2024-01-14
2724

embassy-usb-logger/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-usb-logger"
3-
version = "0.2.0"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "`log` implementation for USB serial using `embassy-usb`."
@@ -15,7 +15,7 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-usb-l
1515
target = "thumbv7em-none-eabi"
1616

1717
[dependencies]
18-
embassy-usb = { version = "0.3.0", path = "../embassy-usb" }
18+
embassy-usb = { version = "0.4.0", path = "../embassy-usb" }
1919
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
2020
embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
2121
log = "0.4"

embassy-usb/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.4.0 - 2025-01-15
11+
12+
- Change config defaults to to composite with IADs. This ensures embassy-usb Just Works in more cases when using classes with multiple interfaces, or multiple classes. (breaking change)
13+
- `composite_with_iads` = `true`
14+
- `device_class` = `0xEF`
15+
- `device_sub_class` = `0x02`
16+
- `device_protocol` = `0x01`
17+
- Add support for USB Audio Class 1.
18+
- Add support for isochronous endpoints.
19+
- Add support for setting the USB version number.
20+
- Add support for device qualifier descriptors.
21+
- Allow `bos_descriptor_buf` to be a zero length if BOS descriptors aren't used.
22+
1023
## 0.3.0 - 2024-08-05
1124

1225
- bump usbd-hid from 0.7.0 to 0.8.1

embassy-usb/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-usb"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Async USB device stack for embedded devices in Rust."

examples/boot/application/stm32wb-dfu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-time = { version = "0.4.0", path = "../../../../embassy-time", features
1111
embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32wb55rg", "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" }
14-
embassy-usb = { version = "0.3.0", path = "../../../../embassy-usb" }
14+
embassy-usb = { version = "0.4.0", path = "../../../../embassy-usb" }
1515
embassy-usb-dfu = { version = "0.1.0", path = "../../../../embassy-usb-dfu", features = ["application", "cortex-m"] }
1616

1717
defmt = { version = "0.3", optional = true }

examples/boot/bootloader/stm32wb-dfu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ embedded-storage = "0.3.1"
1818
embedded-storage-async = "0.4.0"
1919
cfg-if = "1.0.0"
2020
embassy-usb-dfu = { version = "0.1.0", path = "../../../../embassy-usb-dfu", features = ["dfu", "cortex-m"] }
21-
embassy-usb = { version = "0.3.0", path = "../../../../embassy-usb", default-features = false }
21+
embassy-usb = { version = "0.4.0", path = "../../../../embassy-usb", default-features = false }
2222
embassy-futures = { version = "0.1.1", path = "../../../../embassy-futures" }
2323

2424
[features]

examples/nrf52840/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-executor = { version = "0.7.0", path = "../../embassy-executor", feature
1111
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
1212
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac", "time"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embedded-io = { version = "0.6.0", features = ["defmt-03"] }
1616
embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
1717
embassy-net-esp-hosted = { version = "0.2.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] }

examples/nrf5340/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-executor = { version = "0.7.0", path = "../../embassy-executor", feature
1111
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
1212
embassy-nrf = { version = "0.3.1", path = "../../embassy-nrf", features = ["defmt", "nrf5340-app-s", "time-driver-rtc1", "gpiote", "unstable-pac"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embedded-io-async = { version = "0.6.1" }
1616

1717
defmt = "0.3"

examples/rp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
1313
embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp2040"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns", "proto-ipv4", "proto-ipv6", "multicast"] }
1616
embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
1717
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
18-
embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
18+
embassy-usb-logger = { version = "0.4.0", path = "../../embassy-usb-logger" }
1919
cyw43 = { version = "0.3.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
2020
cyw43-pio = { version = "0.3.0", path = "../../cyw43-pio", features = ["defmt"] }
2121

examples/rp23/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
1313
embassy-rp = { version = "0.3.0", path = "../../embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp235xa", "binary-info"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns"] }
1616
embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
1717
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
18-
embassy-usb-logger = { version = "0.2.0", path = "../../embassy-usb-logger" }
18+
embassy-usb-logger = { version = "0.4.0", path = "../../embassy-usb-logger" }
1919
cyw43 = { version = "0.3.0", path = "../../cyw43", features = ["defmt", "firmware-logs"] }
2020
cyw43-pio = { version = "0.3.0", path = "../../cyw43-pio", features = ["defmt"] }
2121

examples/stm32f1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [
1010
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
13-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
13+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1414
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1515

1616
defmt = "0.3"

examples/stm32f3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [
1010
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
13-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
13+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1414
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1515

1616
defmt = "0.3"

examples/stm32f334/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
99
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1010
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1111
embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [ "defmt", "stm32f334r8", "unstable-pac", "memory-x", "time-driver-any", "exti"] }
12-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
12+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1313
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1414

1515
defmt = "0.3"

examples/stm32f4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = ["
1010
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
13-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt" ] }
13+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt" ] }
1414
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", ] }
1515
embassy-net-wiznet = { version = "0.2.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
1616
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }

examples/stm32f7/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ embassy-executor = { version = "0.7.0", path = "../../embassy-executor", feature
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] }
1414
embedded-io-async = { version = "0.6.1" }
15-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
15+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1616
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1717

1818
defmt = "0.3"

examples/stm32g0/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [
1010
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
13-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", default-features = false, features = ["defmt"] }
13+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", default-features = false, features = ["defmt"] }
1414
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1515

1616
defmt = "0.3"

examples/stm32g4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [
1010
embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["defmt"] }
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
13-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
13+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1414
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1515
usbd-hid = "0.8.1"
1616

examples/stm32h5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "proto-ipv6"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1616

1717
defmt = "0.3"

examples/stm32h7/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal"
1212
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1313
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1414
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "proto-ipv6", "dns"] }
15-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
15+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1616
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1717

1818
defmt = "0.3"

examples/stm32h755cm4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal"
1212
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1313
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1414
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "proto-ipv6", "dns"] }
15-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
15+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1616
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1717

1818
defmt = "0.3"

examples/stm32h755cm7/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal"
1212
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1313
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1414
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "proto-ipv6", "dns"] }
15-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
15+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1616
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1717

1818
defmt = "0.3"

examples/stm32h7b0/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-embedded-hal = { version = "0.3.0", path = "../../embassy-embedded-hal"
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "proto-ipv6", "dns"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1616

1717
defmt = "0.3"

examples/stm32h7rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
1111
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
1212
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1313
embassy-net = { version = "0.6.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "proto-ipv6", "dns"] }
14-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
14+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1515
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1616

1717
defmt = "0.3"

examples/stm32l1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
99
embassy-executor = { version = "0.7.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt"] }
1010
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
1111
embassy-stm32 = { version = "0.2.0", path = "../../embassy-stm32", features = [ "defmt", "stm32l151cb-a", "time-driver-any", "memory-x"] }
12-
embassy-usb = { version = "0.3.0", path = "../../embassy-usb", features = ["defmt"] }
12+
embassy-usb = { version = "0.4.0", path = "../../embassy-usb", features = ["defmt"] }
1313
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
1414

1515
defmt = "0.3"

0 commit comments

Comments
 (0)