We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 944494c + c153eca commit a648210Copy full SHA for a648210
Cargo.toml
@@ -10,7 +10,7 @@ repository = "https://github.com/rp-rs/ws2812-pio-rs/"
10
[dependencies]
11
embedded-hal = "0.2.5"
12
fugit = "0.3.5"
13
-rp2040-hal = "0.9.0"
+rp2040-hal = "0.10"
14
pio = "0.2.0"
15
smart-leds-trait = "0.2.1"
16
nb = "1.0.0"
src/lib.rs
@@ -125,7 +125,7 @@ where
125
let frac: u8 = frac as u8;
126
127
let pin = pin.into();
128
- let (mut sm, _, tx) = rp2040_hal::pio::PIOBuilder::from_program(installed)
+ let (mut sm, _, tx) = rp2040_hal::pio::PIOBuilder::from_installed_program(installed)
129
// only use TX FIFO
130
.buffers(rp2040_hal::pio::Buffers::OnlyTx)
131
// Pin configuration
0 commit comments