File tree Expand file tree Collapse file tree 2 files changed +10
-14
lines changed Expand file tree Collapse file tree 2 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -81,18 +81,14 @@ version = "1.0"
8181
8282[dev-dependencies .async-rtic ]
8383package = " 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 :)
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ extern crate async_rtic as rtic;
4242mod 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
You can’t perform that action at this time.
0 commit comments