Merge pull request #199 from ithinuel/simplify-types

Bump to latest ws2812 driver's revision.
This commit is contained in:
Jonathan 'theJPster' Pallant 2021-11-22 07:56:21 +00:00 committed by GitHub
commit 4fb005f5b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 18 deletions

View file

@ -22,7 +22,7 @@ rp2040-boot2 = "0.2"
nb = "1.0.0" nb = "1.0.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" } 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] [features]
default = ["rt"] default = ["rt"]

View file

@ -13,7 +13,6 @@ use embedded_time::duration::Extensions;
use feather_rp2040::{ use feather_rp2040::{
hal::{ hal::{
clocks::{init_clocks_and_plls, Clock}, clocks::{init_clocks_and_plls, Clock},
gpio::{FunctionPio0, Pin},
pac, pac,
sio::Sio, sio::Sio,
timer::Timer, timer::Timer,
@ -55,8 +54,6 @@ fn main() -> ! {
&mut pac.RESETS, &mut pac.RESETS,
); );
let _neopixel: Pin<_, FunctionPio0> = pins.neopixel.into_mode();
let timer = Timer::new(pac.TIMER, &mut pac.RESETS); let timer = Timer::new(pac.TIMER, &mut pac.RESETS);
let mut delay = timer.count_down(); let mut delay = timer.count_down();
@ -64,7 +61,7 @@ fn main() -> ! {
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS); let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
let mut ws = Ws2812::new( let mut ws = Ws2812::new(
// The onboard NeoPixel is attached to GPIO pin #16 on the Feather RP2040. // The onboard NeoPixel is attached to GPIO pin #16 on the Feather RP2040.
16, pins.neopixel.into_mode(),
&mut pio, &mut pio,
sm0, sm0,
clocks.peripheral_clock.freq(), clocks.peripheral_clock.freq(),

View file

@ -22,7 +22,7 @@ rp2040-boot2 = "0.2"
smart-leds = "0.3" smart-leds = "0.3"
nb = "1.0.0" nb = "1.0.0"
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" } 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] [features]
default = ["rt"] default = ["rt"]

View file

@ -15,7 +15,6 @@ use ws2812_pio::Ws2812;
use itsy_bitsy_rp2040::{ use itsy_bitsy_rp2040::{
hal::{ hal::{
clocks::{init_clocks_and_plls, Clock}, clocks::{init_clocks_and_plls, Clock},
gpio::{FunctionPio0, Pin},
pac, pac,
sio::Sio, sio::Sio,
watchdog::Watchdog, watchdog::Watchdog,
@ -53,7 +52,7 @@ fn main() -> ! {
&mut pac.RESETS, &mut pac.RESETS,
); );
let _led: Pin<_, FunctionPio0> = pins.neopixel_data.into_mode(); let led = pins.neopixel_data.into_mode();
pins.neopixel_power pins.neopixel_power
.into_push_pull_output() .into_push_pull_output()
@ -65,7 +64,7 @@ fn main() -> ! {
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS); let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
let mut ws = Ws2812::new( let mut ws = Ws2812::new(
17, led,
&mut pio, &mut pio,
sm0, sm0,
clocks.peripheral_clock.freq(), clocks.peripheral_clock.freq(),

View file

@ -26,4 +26,4 @@ smart-leds = "0.3.0"
embedded-time = "0.12.0" embedded-time = "0.12.0"
nb = "1.0.0" nb = "1.0.0"
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" } 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" }

View file

@ -17,7 +17,6 @@ use panic_halt as _;
use pro_micro_rp2040::{ use pro_micro_rp2040::{
hal::{ hal::{
clocks::{init_clocks_and_plls, Clock}, clocks::{init_clocks_and_plls, Clock},
gpio::{FunctionPio0, Pin},
pac, pac,
sio::Sio, sio::Sio,
timer::Timer, timer::Timer,
@ -70,15 +69,13 @@ fn main() -> ! {
&mut pac.RESETS, &mut pac.RESETS,
); );
let _led: Pin<_, FunctionPio0> = pins.led.into_mode();
let timer = Timer::new(pac.TIMER, &mut pac.RESETS); let timer = Timer::new(pac.TIMER, &mut pac.RESETS);
let mut delay = timer.count_down(); let mut delay = timer.count_down();
// Configure the addressable LED // Configure the addressable LED
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS); let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
let mut ws = Ws2812::new( let mut ws = Ws2812::new(
25, pins.led.into_mode(),
&mut pio, &mut pio,
sm0, sm0,
clocks.peripheral_clock.freq(), clocks.peripheral_clock.freq(),

View file

@ -22,7 +22,7 @@ rp2040-boot2 = "0.2"
smart-leds = "0.3" smart-leds = "0.3"
nb = "1.0.0" nb = "1.0.0"
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" } 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] [features]
default = ["rt"] default = ["rt"]

View file

@ -15,7 +15,6 @@ use ws2812_pio::Ws2812;
use qt_py_rp2040::{ use qt_py_rp2040::{
hal::{ hal::{
clocks::{init_clocks_and_plls, Clock}, clocks::{init_clocks_and_plls, Clock},
gpio::{FunctionPio0, Pin},
pac, pac,
sio::Sio, sio::Sio,
watchdog::Watchdog, watchdog::Watchdog,
@ -53,7 +52,7 @@ fn main() -> ! {
&mut pac.RESETS, &mut pac.RESETS,
); );
let _led: Pin<_, FunctionPio0> = pins.neopixel_data.into_mode(); let led = pins.neopixel_data.into_mode();
pins.neopixel_power pins.neopixel_power
.into_push_pull_output() .into_push_pull_output()
@ -65,7 +64,7 @@ fn main() -> ! {
let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS); let (mut pio, sm0, _, _, _) = pac.PIO0.split(&mut pac.RESETS);
let mut ws = Ws2812::new( let mut ws = Ws2812::new(
12, led,
&mut pio, &mut pio,
sm0, sm0,
clocks.peripheral_clock.freq(), clocks.peripheral_clock.freq(),