diff --git a/Cargo.lock b/Cargo.lock index 593984f..f441c5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", ] diff --git a/Cargo.toml b/Cargo.toml index a836a73..d593089 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] }