Blink!
This commit is contained in:
parent
72b0d3811d
commit
78cb2dd146
2 changed files with 7 additions and 3 deletions
3
Cargo.lock
generated
3
Cargo.lock
generated
|
|
@ -178,6 +178,7 @@ checksum = "04c691efd1af993c7c4cb79eb13da4b901c1e8c6d148280e2a36ae2885f83218"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cortex-m",
|
"cortex-m",
|
||||||
"cortex-m-rt",
|
"cortex-m-rt",
|
||||||
|
"defmt",
|
||||||
"embassy-futures",
|
"embassy-futures",
|
||||||
"embassy-net-driver-channel",
|
"embassy-net-driver-channel",
|
||||||
"embassy-sync",
|
"embassy-sync",
|
||||||
|
|
@ -195,6 +196,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "22bb644457cfefdd1f0eeea7a3a708a61f9ab223aaf56b7f50589180808d302a"
|
checksum = "22bb644457cfefdd1f0eeea7a3a708a61f9ab223aaf56b7f50589180808d302a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cyw43",
|
"cyw43",
|
||||||
|
"defmt",
|
||||||
"embassy-rp",
|
"embassy-rp",
|
||||||
"fixed",
|
"fixed",
|
||||||
"pio",
|
"pio",
|
||||||
|
|
@ -717,6 +719,7 @@ version = "0.8.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"defmt",
|
||||||
"hash32",
|
"hash32",
|
||||||
"stable_deref_trait",
|
"stable_deref_trait",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,15 @@
|
||||||
name = "picow"
|
name = "picow"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
license = "MIT"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m-rt = "*"
|
cortex-m-rt = "*"
|
||||||
cyw43 = "*"
|
cyw43 = { version = "*", features = ["defmt", "firmware-logs"] }
|
||||||
cyw43-pio = "*"
|
cyw43-pio = { version = "*", features = ["defmt"] }
|
||||||
defmt = "*"
|
defmt = "*"
|
||||||
defmt-rtt = "*"
|
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-rp = { version = "*", features = ["critical-section-impl", "defmt", "time-driver"] }
|
||||||
embassy-time = { version = "*", features = ["defmt", "defmt-timestamp-uptime"] }
|
embassy-time = { version = "*", features = ["defmt", "defmt-timestamp-uptime"] }
|
||||||
panic-probe = { version = "*", features = ["print-defmt"] }
|
panic-probe = { version = "*", features = ["print-defmt"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue