Skip to content

Commit 99bd39f

Browse files
committed
Done5: Working with upstream dependencies
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 4c21961 commit 99bd39f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ repository = "https://github.com/rp-rs/ws2812-pio-rs/"
99

1010
[dependencies]
1111
embedded-hal = "1.0.0-alpha.11"
12-
fugit = "0.3.5" #0.3.7
13-
#rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", branch = "main", features = [ "eh1_0_alpha", ] }
14-
rp2040-hal = { path = "/home/zoid/clone/rp2040/rp-hal/rp2040-hal", features = [ "eh1_0_alpha" ] }
12+
fugit = "0.3.7"
13+
rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", branch = "main", features = [ "eh1_0_alpha", ] }
1514
pio = "0.2.1"
1615
smart-leds-trait = "0.2.1"
1716
nb = "1.1.0"
18-
cortex-m = "0.7.3"
17+
cortex-m = "0.7.7"

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
//! Bear in mind that you will have to take care of timing requirements
1414
//! yourself then.
1515
16+
use cortex_m::prelude::_embedded_hal_timer_CountDown;
1617
use fugit::{ExtU32, HertzU32};
1718
use rp2040_hal::{
1819
gpio::{Function, Pin, PinId, *},

0 commit comments

Comments
 (0)