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
this API has been stabilised with Rust 1.81.0. accordingly the MSRV has
been raised.
in order to implement `cause` the underlying error from the HAL must
also implement `core::error::Error`. otherwise the trait bound will not
be satisfied. as the trait has only just been stabilisied it is not yet
implemented by any HAL (except for `embedded-hal-mock` since it's
`std`).
however, for GPIO operations most HALs will anyway just use
`core::convert::Infallible` which in turn already implements
`core::error::Error`, thus this should work out of the box.
0 commit comments