-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assistance with "esp32" example "embassy_dhcp.rs" #274
Comments
The embassy-net version used in your project must match the version in esp-wifi. |
Confused? That is the version out of the manifest in the repo itself, is there a different version that I am missing? i got it from here -> https://github.com/esp-rs/esp-wifi/blob/main/Cargo.toml |
Seems a few needed features weren't selected for [profile.dev.package.esp-wifi]
opt-level = 3
[profile.dev]
lto = "off"
[profile.release]
lto = "off"
[dependencies]
hal = { package = "esp32-hal", version = "0.15.0", features = ["embassy","embassy-time-timg0","async"]}
esp-backtrace = { version = "0.8.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
esp-println = { version = "0.6.0", features = ["esp32","log"] }
log = { version = "0.4.18" }
esp-alloc = { version = "0.3.0" }
esp-wifi = { git = "https://github.com/esp-rs/esp-wifi/", rev = "fbb8417", features = ["esp32", "wifi-logs", "wifi", "async", "embassy-net"] }
smoltcp = { version = "0.10.0", default-features=false, features = ["proto-igmp", "proto-ipv4", "socket-tcp", "socket-icmp", "socket-udp", "medium-ethernet", "proto-dhcpv4", "socket-raw", "socket-dhcpv4"] }
embedded-svc = { version = "0.25.0", default-features = false, features = [] }
embedded-io = "0.4.0"
heapless = { version = "0.7.14", default-features = false }
embassy-executor = { version = "0.3.0", package = "embassy-executor", features = ["nightly", "executor-thread", "integrated-timers", "arch-xtensa"] }
embassy-time = { version = "0.1.3", features = ["nightly"] }
embassy-net = { version = "0.1.0", features = ["nightly", "tcp", "udp", "dhcpv4", "medium-ethernet"] } |
Thank you!, I finally got new errors and going to take a crack at solving them. |
Hello,
Trying to get the example for the "embassy_dhcp" up and running for the esp32, however running into a slight snag that I can't figure out for the life of me. Any hint or advice would be truly appreciated.
Code Snippet Area:
Error:
manifest:
The text was updated successfully, but these errors were encountered: