Move pio driver to separate crate

This commit is contained in:
kbleeke
2023-03-27 18:04:48 +02:00
parent d918919cb2
commit 20ea35fc96
6 changed files with 31 additions and 9 deletions

13
cyw43-pio/Cargo.toml Normal file
View File

@ -0,0 +1,13 @@
[package]
name = "cyw43-pio"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cyw43 = { path = "../" }
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "pio"] }
pio-proc = "0.2"
pio = "0.2.1"
defmt = "0.3"