2022-07-10 17:45:26 +00:00
|
|
|
[package]
|
|
|
|
name = "cyw43"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[features]
|
2022-08-13 13:37:30 +00:00
|
|
|
defmt = ["dep:defmt"]
|
2022-07-10 17:45:26 +00:00
|
|
|
log = ["dep:log"]
|
2022-08-13 13:37:30 +00:00
|
|
|
|
2022-12-25 21:50:27 +00:00
|
|
|
# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`.
|
|
|
|
firmware-logs = []
|
|
|
|
|
2022-07-10 17:45:26 +00:00
|
|
|
[dependencies]
|
2023-10-16 18:07:48 +00:00
|
|
|
embassy-time = { version = "0.1.5", path = "../embassy-time"}
|
2023-09-14 16:26:00 +00:00
|
|
|
embassy-sync = { version = "0.3.0", path = "../embassy-sync"}
|
2023-05-30 21:22:34 +00:00
|
|
|
embassy-futures = { version = "0.1.0", path = "../embassy-futures"}
|
2023-10-15 17:38:42 +00:00
|
|
|
embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel"}
|
2022-07-10 17:45:26 +00:00
|
|
|
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
|
|
log = { version = "0.4.17", optional = true }
|
|
|
|
|
2023-04-27 17:37:19 +00:00
|
|
|
cortex-m = "0.7.6"
|
2022-07-10 17:45:26 +00:00
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
|
|
|
|
|
2023-08-15 22:40:56 +00:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-rc.1" }
|
2022-07-11 03:19:31 +00:00
|
|
|
num_enum = { version = "0.5.7", default-features = false }
|
2023-05-31 22:15:37 +00:00
|
|
|
|
|
|
|
[package.metadata.embassy_docs]
|
|
|
|
src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-v$VERSION/cyw43/src/"
|
|
|
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43/src/"
|
|
|
|
target = "thumbv6m-none-eabi"
|
2023-08-28 15:00:18 +00:00
|
|
|
features = ["defmt", "firmware-logs"]
|