embassy/cyw43-pio/Cargo.toml

29 lines
1 KiB
TOML
Raw Normal View History

2023-03-27 18:04:48 +02:00
[package]
name = "cyw43-pio"
version = "0.1.0"
edition = "2021"
2024-01-12 00:32:47 +01:00
description = "RP2040 PIO SPI implementation for cyw43"
keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]
categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"]
2024-01-12 00:32:47 +01:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
documentation = "https://docs.embassy.dev/cyw43-pio"
2023-03-27 18:04:48 +02:00
[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 18:04:48 +02:00
[dependencies]
cyw43 = { version = "0.1.0", path = "../cyw43" }
embassy-rp = { version = "0.1.0", path = "../embassy-rp" }
2023-03-27 18:04:48 +02:00
pio-proc = "0.2"
pio = "0.2.1"
2023-05-13 02:20:46 +02:00
fixed = "1.23.1"
defmt = { version = "0.3", optional = true }
2023-06-01 00:15:37 +02:00
[package.metadata.embassy_docs]
src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-pio-v$VERSION/cyw43-pio/src/"
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43-pio/src/"
target = "thumbv6m-none-eabi"