Compile starter project

This commit is contained in:
Invariantspace 2024-10-11 23:48:37 -07:00
parent a3030756cb
commit 661ebf6e7d
No known key found for this signature in database
GPG key ID: EBC4A20067373921
10 changed files with 1653 additions and 6 deletions

View file

@ -1,6 +1,22 @@
[package]
name = "pico"
name = "picow"
version = "0.1.0"
edition = "2021"
[dependencies]
cortex-m-rt = "*"
cyw43 = "*"
cyw43-pio = "*"
defmt = "*"
defmt-rtt = "*"
embassy-executor = { version = "*", features = ["arch-cortex-m", "defmt", "executor-interrupt", "executor-thread", "integrated-timers"] }
embassy-rp = { version = "*", features = ["critical-section-impl", "defmt", "time-driver"] }
embassy-time = { version = "*", features = ["defmt", "defmt-timestamp-uptime"] }
panic-probe = { version = "*", features = ["print-defmt"] }
portable-atomic = { version = "*", features = ["critical-section"] }
static_cell = "*"
[profile.release]
debug = 2
lto = true
opt-level = "z"