embassy/cyw43-pio/Cargo.toml

17 lines
499 B
TOML
Raw Normal View History

2023-03-27 16:04:48 +00:00
[package]
name = "cyw43-pio"
version = "0.1.0"
edition = "2021"
[features]
# If disabled, SPI runs at 31.25MHz
# If enabled, SPI runs at 62.5MHz, which is 25% higher than 50Mhz which is the maximum according to the CYW43439 datasheet.
overclock = []
2023-03-27 16:04:48 +00:00
[dependencies]
2023-05-30 20:42:49 +00:00
cyw43 = { path = "../cyw43" }
2023-04-30 21:02:44 +00:00
embassy-rp = { version = "0.1.0", features = ["unstable-traits", "nightly", "unstable-pac", "time-driver"] }
2023-03-27 16:04:48 +00:00
pio-proc = "0.2"
pio = "0.2.1"
2023-05-13 00:20:46 +00:00
fixed = "1.23.1"
2023-04-30 21:55:19 +00:00
defmt = { version = "0.3", optional = true }