You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some issues to find the right feature flags for a esp32s3 to get the v0.7 executor running.
I tried all of the possible feature flags, but I don't get it to build.. Any advice what I am doing wrong?
Cargo.toml
[package]
name = "vapo-control"version = "0.1.0"edition = "2021"license = "MIT OR Apache-2.0"
[dependencies]
esp-backtrace = { version = "0.15", features = [
"esp32s3",
"exception-handler",
"panic-handler",
"println",
] }
esp-hal = { version = "0.23", features = ["esp32s3", "unstable"] }
esp-println = { version = "0.13", features = ["esp32s3", "log"] }
log = { version = "0.4" }
esp-alloc = { version = "0.6" }
embassy-executor = { version = "0.7", features = [
"nightly",
"executor-thread",
] }
esp-hal-embassy = { version = "0.6", features = ["esp32s3"] }
I have some issues to find the right feature flags for a
esp32s3
to get the v0.7 executor running.I tried all of the possible feature flags, but I don't get it to build.. Any advice what I am doing wrong?
Cargo.toml
main.rs
The text was updated successfully, but these errors were encountered: