We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
edge-executor
I got this error:
the package `gpio` depends on `esp-idf-hal`, with features: `edge-executor` but `esp-idf-hal` does not have these features.
Note: gpio is my crate's name
gpio
According to this link, you can prepare esp-idf-hal to use edge-executor like this:
esp-idf-hal
wake-from-isr = [] # Only enable if you plan to use the `edge-executor` crate
So I did that:
embassy = [ "esp-idf-hal?/embassy-sync", "esp-idf-hal?/critical-section", "esp-idf-hal?/edge-executor", // edge-executor defined here "esp-idf-svc?/embassy-time-driver", "esp-idf-svc?/embassy-time-isr-queue", ] [dependencies] log = { version = "0.4.17", default-features = false } esp-idf-sys = { version = "0.33", default-features = false } esp-idf-hal = { version = "0.43", features = ["wake-from-isr"], optional = true, default-features = false } // wake-from-isr added here esp-idf-svc = { version = "0.46", optional = true, default-features = false } embedded-svc = { version = "0.25", optional = true, default-features = false } anyhow = "=1.0.75"
But I'm still getting the same error.
The text was updated successfully, but these errors were encountered:
wake-from-isr
esp-idf-svc/hal
Sorry, something went wrong.
Thanks for the reply!
No branches or pull requests
I got this error:
Note:
gpio
is my crate's nameAccording to this link, you can prepare
esp-idf-hal
to useedge-executor
like this:So I did that:
But I'm still getting the same error.
The text was updated successfully, but these errors were encountered: