Skip to content

Commit 8fd0fd6

Browse files
Merge pull request #78 from stm32-rs/rtic_v2
Update RTICv2 git dependency
2 parents 738519b + 0708a91 commit 8fd0fd6

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

Cargo.toml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,14 @@ version = "1.0"
8181

8282
[dev-dependencies.async-rtic]
8383
package = "rtic"
84-
git = "https://github.com/rtic-rs/cortex-m-rtic.git"
85-
rev = "364edb707ebf7baa2e7bdd1b1e6b02156d7b5569"
86-
87-
[dev-dependencies.rtic-arbiter]
88-
package = "rtic-arbiter"
89-
git = "https://github.com/rtic-rs/cortex-m-rtic.git"
90-
rev = "364edb707ebf7baa2e7bdd1b1e6b02156d7b5569"
91-
92-
[dev-dependencies.rtic-channel]
93-
package = "rtic-channel"
94-
git = "https://github.com/rtic-rs/cortex-m-rtic.git"
95-
rev = "364edb707ebf7baa2e7bdd1b1e6b02156d7b5569"
84+
git = "https://github.com/rtic-rs/rtic.git"
85+
rev = "7c7d6558f6d9c50fbb4d2487c98c9a5be15f2f7b"
86+
features = [ "thumbv7-backend" ]
87+
88+
[dev-dependencies.rtic-sync]
89+
package = "rtic-sync"
90+
git = "https://github.com/rtic-rs/rtic.git"
91+
rev = "7c7d6558f6d9c50fbb4d2487c98c9a5be15f2f7b"
9692

9793
# This isn't an actual example. It just exists so we can easily
9894
# test the common items :)

examples/async-rtic-timestamp.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ extern crate async_rtic as rtic;
4242
mod app {
4343

4444
use async_rtic as rtic;
45-
use rtic_channel::{Channel, Receiver, Sender};
45+
use rtic_sync::channel::{Channel, Receiver, Sender};
4646

4747
use crate::common::EthernetPhy;
4848

49-
use rtic_arbiter::Arbiter;
49+
use rtic_sync::arbiter::Arbiter;
5050

5151
use ieee802_3_miim::{phy::PhySpeed, Phy};
5252

0 commit comments

Comments
 (0)