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

10
src/error.rs Normal file
View File

@ -0,0 +1,10 @@
use esp_idf_sys::EspError;
use crate::display::DisplayError;
use crate::gps::GpsError;
#[derive(Debug)]
pub enum Error {
EspError(EspError),
DisplayError(DisplayError),
GpsError(GpsError),
}