Skip to content

Commit 8167869

Browse files
committed
Update versions of everything
1 parent d2960df commit 8167869

File tree

15 files changed

+878
-541
lines changed

15 files changed

+878
-541
lines changed

examples/i2c-passthru/rp2040/Cargo.lock

+208-100
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/i2c-passthru/rp2040/Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ edition = "2021"
55

66
[dependencies]
77
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
8-
embassy-executor = { version = "0.6.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
9-
embassy-rp = { version = "0.2.0", features = ["rp2040", "defmt", "unstable-pac", "time-driver", "critical-section-impl"] }
8+
embassy-executor = { version = "0.7.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
9+
embassy-rp = { version = "0.3.0", features = ["rp2040", "defmt", "unstable-pac", "time-driver", "critical-section-impl"] }
1010
embassy-sync = { version = "0.6.0", features = ["defmt"] }
11-
embassy-time = { version = "0.3.2", features = ["defmt", "defmt-timestamp-uptime"] }
12-
embassy-usb = { version = "0.3.0", features = ["defmt"] }
11+
embassy-time = { version = "0.4.0", features = ["defmt", "defmt-timestamp-uptime"] }
12+
embassy-usb = { version = "0.4.0", features = ["defmt"] }
1313
panic-probe = { version = "0.3", features = ["print-defmt"] }
14-
postcard-rpc = { version = "0.11.0", features = ["embassy-usb-0_3-server"] }
14+
postcard-rpc = { version = "0.11.0", features = ["embassy-usb-0_4-server"] }
1515
postcard = { version = "1.1.0" }
1616
postcard-schema = { version = "0.2.0", features = ["derive"] }
1717
portable-atomic = { version = "1.6.0", features = ["critical-section"] }
@@ -41,10 +41,10 @@ codegen-units = 256
4141
rpath = false
4242

4343
[patch.crates-io]
44-
embassy-embedded-hal = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
45-
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
46-
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
47-
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
48-
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
49-
embassy-usb = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
50-
embassy-usb-driver = { git = "https://github.com/embassy-rs/embassy", rev = "32cff6530fdb81066451cc1d3f1fbbb420e985da" }
44+
embassy-embedded-hal = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }
45+
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }
46+
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }
47+
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }
48+
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }
49+
embassy-usb = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }
50+
embassy-usb-driver = { git = "https://github.com/embassy-rs/embassy", rev = "51d87c6603631fda6fb59ca1a65a99c08138b081" }

examples/i2c-passthru/rp2040/src/app.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use i2c_passthru_icd::{
1515
RebootToPicoBoot, SetLedEndpoint, SleepEndpoint, ENDPOINT_LIST, TOPICS_IN_LIST,
1616
TOPICS_OUT_LIST,
1717
};
18-
use postcard_rpc::server::impls::embassy_usb_v0_3::{
18+
use postcard_rpc::server::impls::embassy_usb_v0_4::{
1919
dispatch_impl::{spawn_fn, WireRxBuf, WireRxImpl, WireSpawnImpl, WireStorage, WireTxImpl},
2020
PacketBuffers,
2121
};
@@ -89,11 +89,11 @@ define_dispatch! {
8989
// app.
9090
app: MyApp;
9191
// This chooses how we spawn functions. Here, we use the implementation
92-
// from the `embassy_usb_v0_3` implementation
92+
// from the `embassy_usb_v0_4` implementation
9393
spawn_fn: spawn_fn;
9494
// This is our TX impl, which we aliased above
9595
tx_impl: AppTx;
96-
// This is our spawn impl, which also comes from `embassy_usb_v0_3`.
96+
// This is our spawn impl, which also comes from `embassy_usb_v0_4`.
9797
spawn_impl: WireSpawnImpl;
9898
// This is the context type we defined above
9999
context: Context;

0 commit comments

Comments
 (0)