Reverted back to pre async attempt

This commit is contained in:
2023-07-21 10:23:23 +01:00
parent 46ca82f379
commit 620ff4b207
6 changed files with 147 additions and 83 deletions

7
src/display/mod.rs Normal file
View File

@ -0,0 +1,7 @@
/// Enum to make clear the stage of failure of the display
#[derive(Debug)]
pub enum DisplayError {
SetupError(display_interface::DisplayError),
DrawingError,
FlushError,
}