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
{{ message }}
This repository was archived by the owner on Aug 1, 2024. It is now read-only.
Steps to reproduce
Checkout code and configure for ESP32S2. cargo build --features kaluga
Expected:
Code compiles successfully
Observed:
error[E0277]: the trait bound `ili9341::DisplayError: std::error::Error` is not satisfied
--> src/main.rs:860:10
|
860 | )?;
| ^ the trait `std::error::Error` is not implemented for `ili9341::DisplayError`
|
= note: required because of the requirements on the impl of `From<ili9341::DisplayError>` for `anyhow::Error`
= note: required because of the requirements on the impl of `FromResidual<std::result::Result<Infallible, ili9341::DisplayError>>` for `std::result::Result<(), anyhow::Error>`
For more information about this error, try `rustc --explain E0277`.
Workaround:
Replace on line 860 the )?; with ).unwrap();
- Remove `write_only` on `spi::config::Config` for `ttgo` as it's not released yet
- Fixivmarkov#92: Convert error to `anyhow::Error` for `kaluga` feature
Steps to reproduce
Checkout code and configure for ESP32S2.
cargo build --features kaluga
Expected:
Code compiles successfully
Observed:
Workaround:
Replace on line 860 the
)?;
with).unwrap();
Code: commit 9b4da90 from 2022-05-23.
The text was updated successfully, but these errors were encountered: