mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-23 12:41:31 +11:00
Merge pull request #199 from ithinuel/simplify-types
Bump to latest ws2812 driver's revision.
This commit is contained in:
commit
4fb005f5b6
|
@ -22,7 +22,7 @@ rp2040-boot2 = "0.2"
|
|||
nb = "1.0.0"
|
||||
smart-leds = "0.3.0"
|
||||
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "e1cdd475de20697aaa0bc58803512927094f0326" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "7a11616f994025f5c99f28b283d2b25d60d46a43" }
|
||||
|
||||
[features]
|
||||
default = ["rt"]
|
||||
|
|
|
@ -13,7 +13,6 @@ use embedded_time::duration::Extensions;
|
|||
use feather_rp2040::{
|
||||
hal::{
|
||||
clocks::{init_clocks_and_plls, Clock},
|
||||
gpio::{FunctionPio0, Pin},
|
||||
pac,
|
||||
sio::Sio,
|
||||
timer::Timer,
|
||||
|
@ -55,8 +54,6 @@ fn main() -> ! {
|
|||
&mut pac.RESETS,
|
||||
);
|
||||
|
||||
let _neopixel: Pin<_, FunctionPio0> = pins.neopixel.into_mode();
|
||||
|
||||
let timer = Timer::new(pac.TIMER, &mut pac.RESETS);
|
||||
let mut delay = timer.count_down();
|
||||
|
||||
|
@ -64,7 +61,7 @@ fn main() -> ! {
|
|||
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
|
||||
let mut ws = Ws2812::new(
|
||||
// The onboard NeoPixel is attached to GPIO pin #16 on the Feather RP2040.
|
||||
16,
|
||||
pins.neopixel.into_mode(),
|
||||
&mut pio,
|
||||
sm0,
|
||||
clocks.peripheral_clock.freq(),
|
||||
|
|
|
@ -22,7 +22,7 @@ rp2040-boot2 = "0.2"
|
|||
smart-leds = "0.3"
|
||||
nb = "1.0.0"
|
||||
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "e1cdd475de20697aaa0bc58803512927094f0326" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "7a11616f994025f5c99f28b283d2b25d60d46a43" }
|
||||
|
||||
[features]
|
||||
default = ["rt"]
|
||||
|
|
|
@ -15,7 +15,6 @@ use ws2812_pio::Ws2812;
|
|||
use itsy_bitsy_rp2040::{
|
||||
hal::{
|
||||
clocks::{init_clocks_and_plls, Clock},
|
||||
gpio::{FunctionPio0, Pin},
|
||||
pac,
|
||||
sio::Sio,
|
||||
watchdog::Watchdog,
|
||||
|
@ -53,7 +52,7 @@ fn main() -> ! {
|
|||
&mut pac.RESETS,
|
||||
);
|
||||
|
||||
let _led: Pin<_, FunctionPio0> = pins.neopixel_data.into_mode();
|
||||
let led = pins.neopixel_data.into_mode();
|
||||
|
||||
pins.neopixel_power
|
||||
.into_push_pull_output()
|
||||
|
@ -65,7 +64,7 @@ fn main() -> ! {
|
|||
|
||||
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
|
||||
let mut ws = Ws2812::new(
|
||||
17,
|
||||
led,
|
||||
&mut pio,
|
||||
sm0,
|
||||
clocks.peripheral_clock.freq(),
|
||||
|
|
|
@ -26,4 +26,4 @@ smart-leds = "0.3.0"
|
|||
embedded-time = "0.12.0"
|
||||
nb = "1.0.0"
|
||||
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "e1cdd475de20697aaa0bc58803512927094f0326" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "7a11616f994025f5c99f28b283d2b25d60d46a43" }
|
||||
|
|
|
@ -17,7 +17,6 @@ use panic_halt as _;
|
|||
use pro_micro_rp2040::{
|
||||
hal::{
|
||||
clocks::{init_clocks_and_plls, Clock},
|
||||
gpio::{FunctionPio0, Pin},
|
||||
pac,
|
||||
sio::Sio,
|
||||
timer::Timer,
|
||||
|
@ -70,15 +69,13 @@ fn main() -> ! {
|
|||
&mut pac.RESETS,
|
||||
);
|
||||
|
||||
let _led: Pin<_, FunctionPio0> = pins.led.into_mode();
|
||||
|
||||
let timer = Timer::new(pac.TIMER, &mut pac.RESETS);
|
||||
let mut delay = timer.count_down();
|
||||
|
||||
// Configure the addressable LED
|
||||
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
|
||||
let mut ws = Ws2812::new(
|
||||
25,
|
||||
pins.led.into_mode(),
|
||||
&mut pio,
|
||||
sm0,
|
||||
clocks.peripheral_clock.freq(),
|
||||
|
|
|
@ -22,7 +22,7 @@ rp2040-boot2 = "0.2"
|
|||
smart-leds = "0.3"
|
||||
nb = "1.0.0"
|
||||
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "e1cdd475de20697aaa0bc58803512927094f0326" }
|
||||
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "7a11616f994025f5c99f28b283d2b25d60d46a43" }
|
||||
|
||||
[features]
|
||||
default = ["rt"]
|
||||
|
|
|
@ -15,7 +15,6 @@ use ws2812_pio::Ws2812;
|
|||
use qt_py_rp2040::{
|
||||
hal::{
|
||||
clocks::{init_clocks_and_plls, Clock},
|
||||
gpio::{FunctionPio0, Pin},
|
||||
pac,
|
||||
sio::Sio,
|
||||
watchdog::Watchdog,
|
||||
|
@ -53,7 +52,7 @@ fn main() -> ! {
|
|||
&mut pac.RESETS,
|
||||
);
|
||||
|
||||
let _led: Pin<_, FunctionPio0> = pins.neopixel_data.into_mode();
|
||||
let led = pins.neopixel_data.into_mode();
|
||||
|
||||
pins.neopixel_power
|
||||
.into_push_pull_output()
|
||||
|
@ -65,7 +64,7 @@ fn main() -> ! {
|
|||
|
||||
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
|
||||
let mut ws = Ws2812::new(
|
||||
12,
|
||||
led,
|
||||
&mut pio,
|
||||
sm0,
|
||||
clocks.peripheral_clock.freq(),
|
||||
|
|
Loading…
Reference in a new issue