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"
81
81
82
82
[dev-dependencies .async-rtic ]
83
83
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"
96
92
97
93
# This isn't an actual example. It just exists so we can easily
98
94
# test the common items :)
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ extern crate async_rtic as rtic;
42
42
mod app {
43
43
44
44
use async_rtic as rtic;
45
- use rtic_channel :: { Channel , Receiver , Sender } ;
45
+ use rtic_sync :: channel :: { Channel , Receiver , Sender } ;
46
46
47
47
use crate :: common:: EthernetPhy ;
48
48
49
- use rtic_arbiter :: Arbiter ;
49
+ use rtic_sync :: arbiter :: Arbiter ;
50
50
51
51
use ieee802_3_miim:: { phy:: PhySpeed , Phy } ;
52
52
You can’t perform that action at this time.
0 commit comments