This commit is contained in:
Invariantspace 2024-10-12 16:04:35 -07:00
parent 72b0d3811d
commit 78cb2dd146
No known key found for this signature in database
GPG key ID: EBC4A20067373921
2 changed files with 7 additions and 3 deletions

3
Cargo.lock generated
View file

@ -178,6 +178,7 @@ checksum = "04c691efd1af993c7c4cb79eb13da4b901c1e8c6d148280e2a36ae2885f83218"
dependencies = [
"cortex-m",
"cortex-m-rt",
"defmt",
"embassy-futures",
"embassy-net-driver-channel",
"embassy-sync",
@ -195,6 +196,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22bb644457cfefdd1f0eeea7a3a708a61f9ab223aaf56b7f50589180808d302a"
dependencies = [
"cyw43",
"defmt",
"embassy-rp",
"fixed",
"pio",
@ -717,6 +719,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
dependencies = [
"defmt",
"hash32",
"stable_deref_trait",
]

View file

@ -2,14 +2,15 @@
name = "picow"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
cortex-m-rt = "*"
cyw43 = "*"
cyw43-pio = "*"
cyw43 = { version = "*", features = ["defmt", "firmware-logs"] }
cyw43-pio = { version = "*", features = ["defmt"] }
defmt = "*"
defmt-rtt = "*"
embassy-executor = { version = "*", features = ["arch-cortex-m", "defmt", "executor-interrupt", "executor-thread", "integrated-timers"] }
embassy-executor = { version = "*", features = ["arch-cortex-m", "defmt", "executor-interrupt", "executor-thread", "integrated-timers", "task-arena-size-98304"] }
embassy-rp = { version = "*", features = ["critical-section-impl", "defmt", "time-driver"] }
embassy-time = { version = "*", features = ["defmt", "defmt-timestamp-uptime"] }
panic-probe = { version = "*", features = ["print-defmt"] }