WiFi Example
This commit is contained in:
12
Cargo.toml
12
Cargo.toml
@@ -17,7 +17,8 @@ esp-println = { version = "0.14.0", features = ["esp32", "log-04"] }
|
||||
log = { version = "0.4.27" }
|
||||
esp-alloc = { version = "0.8.0" }
|
||||
embedded-io = "0.6.1"
|
||||
# esp-wifi = { version = "0.14.1", features = ["esp32", "wifi"] }
|
||||
embedded-io-async = { version = "0.6.1" }
|
||||
esp-wifi = { version = "0.14.1", features = ["esp32", "wifi"] }
|
||||
heapless = { version = "0.8.0", default-features = false }
|
||||
smoltcp = { version = "0.12.0", default-features = false, features = [
|
||||
"medium-ethernet",
|
||||
@@ -30,11 +31,20 @@ smoltcp = { version = "0.12.0", default-features = false, features = [
|
||||
"socket-udp",
|
||||
] }
|
||||
|
||||
static_cell = { version = "2.1.0", features = ["nightly"] }
|
||||
|
||||
embassy-executor = { version = "0.7", features = ["task-arena-size-20480"] }
|
||||
embassy-time = { version = "0.4" }
|
||||
embassy-net = { version = "0.7", features = [
|
||||
"tcp",
|
||||
"udp",
|
||||
"dhcpv4",
|
||||
"medium-ethernet",
|
||||
] }
|
||||
esp-hal-embassy = { version = "0.8.1", features = ["esp32", "executors"] }
|
||||
esp-bootloader-esp-idf = { version = "0.1" }
|
||||
|
||||
|
||||
[profile.dev]
|
||||
# Rust debug is too slow.
|
||||
# For debug builds always builds with some optimization
|
||||
|
Reference in New Issue
Block a user