Compile starter project
This commit is contained in:
parent
a3030756cb
commit
661ebf6e7d
10 changed files with 1653 additions and 6 deletions
18
Cargo.toml
18
Cargo.toml
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue