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
The Adc struct of embassy_rp implements Channel from embedded_hal 0.2 but the URL in the docs points to 1.0.0-alpha.9 and once clicked it shows 404.
Adc
embassy_rp
Channel
embedded_hal 0.2
1.0.0-alpha.9
https://docs.embassy.dev/embassy-rp/git/rp2040/adc/struct.Adc.html#implementations
The text was updated successfully, but these errors were encountered:
This comes from embassy/embassy-rp > Cargo.toml:
embassy/embassy-rp
Cargo.toml
embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] } embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.9", optional = true}
There is https://docs.rs/embedded-hal/0.2.6/embedded_hal/adc/trait.Channel.html, but no counterpart under https://docs.rs/embedded-hal/1.0.0-alpha.9/embedded_hal/index.html.
Any tips, please?
Sorry, something went wrong.
Channel is indeed from 0.2 and I believe it has something to do with the server and this method in particular:
0.2
https://github.com/embassy-rs/docserver/blob/main/src/bin/server.rs#L153-L158
But you have to double check this because it seems that this method only handles built crates not external.
No branches or pull requests
The
Adc
struct ofembassy_rp
implementsChannel
fromembedded_hal 0.2
but the URL in the docs points to1.0.0-alpha.9
and once clicked it shows 404.https://docs.embassy.dev/embassy-rp/git/rp2040/adc/struct.Adc.html#implementations
The text was updated successfully, but these errors were encountered: