diff --git a/firmware/src/screen.rs b/firmware/src/screen.rs index 20a7e1e..d60eecc 100644 --- a/firmware/src/screen.rs +++ b/firmware/src/screen.rs @@ -85,7 +85,10 @@ impl Screen for Splash { FontColor::Transparent(BinaryColor::On), target, )?; + #[cfg(not(debug_assertions))] Footer::new("", GIT_SHA_STR).draw(target)?; + #[cfg(debug_assertions)] + Footer::new("(DEBUG)", GIT_SHA_STR).draw(target)?; Ok(()) } }