Connect to wireless network
This commit is contained in:
parent
fc1105fdc3
commit
95ad37bcaa
3 changed files with 239 additions and 171 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -10,15 +10,17 @@ serde_yaml = "*"
|
|||
|
||||
[dependencies]
|
||||
cortex-m-rt = "*"
|
||||
cyw43 = "*"
|
||||
cyw43-pio = "*"
|
||||
embassy-executor = { version = "*", features = ["arch-cortex-m", "executor-interrupt", "executor-thread", "integrated-timers", "task-arena-size-98304"] }
|
||||
embassy-rp = { version = "*", features = ["critical-section-impl", "time-driver"] }
|
||||
embassy-time = "*"
|
||||
embassy-usb-logger = "*"
|
||||
cyw43 = { git = "https://github.com/embassy-rs/embassy.git" }
|
||||
cyw43-pio = { git = "https://github.com/embassy-rs/embassy.git" }
|
||||
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", features = ["arch-cortex-m", "executor-interrupt", "executor-thread", "integrated-timers", "nightly"] }
|
||||
embassy-net = { git = "https://github.com/embassy-rs/embassy.git", features = ["tcp", "udp", "raw", "dhcpv4", "dhcpv4-hostname", "dns", "proto-ipv4", "multicast"] }
|
||||
embassy-rp = { git = "https://github.com/embassy-rs/embassy.git", features = ["critical-section-impl", "time-driver", "rp2040"] }
|
||||
embassy-time = { git = "https://github.com/embassy-rs/embassy.git" }
|
||||
embassy-usb-logger = { git = "https://github.com/embassy-rs/embassy.git" }
|
||||
log ="*"
|
||||
panic-halt = "*"
|
||||
portable-atomic = { version = "*", features = ["critical-section"] }
|
||||
rand = { version = "*", default-features = false }
|
||||
static_cell = "*"
|
||||
|
||||
[profile.release]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue