Watch
0
0
Fork
You've already forked esp32-c_its-companion
0

Compare commits

..
Author SHA1 Message Date
477cf60096 FIXUP: cleanup big screen additions 2026-08-15 19:11:15 +02:00
2f9841f45f WIP 2026-08-15 16:31:59 +02:00
f0366a0f69 fixup: max end time 2026-08-15 16:30:43 +02:00
96b38a4142 fixup: clear timing area 2026-08-15 16:24:45 +02:00
a2544cf091 WIP: Adapt to new screen
TODO: Make better use of the bigger screen
TODO: Show main loop HB different from GNSS updates?
2026-08-15 14:30:15 +02:00
4246806e07 WIP: GNSS: Increase update rate 2026-08-15 14:18:23 +02:00

View file

@ -169,10 +169,8 @@ where
};
esp_println::println!(
"TODO: GNSS {fix_str} {num_sat:2} sat {}; {:.2} m/s, {:.0} deg",
self.gnss_hb_state,
pvt.ground_speed_2d(),
pvt.heading_motion()
"TODO: GNSS {fix_str} {num_sat:2} sat {}",
self.gnss_hb_state
);
// TODO: print on screen?
@ -367,9 +365,7 @@ where
}
}
// if is_big_height {
// // TODO: Add current speed and ETA
// }
// TODO: Add current speed and ETA
Ok(())
}
@ -426,7 +422,7 @@ fn maneuver_to_str(value: applogic::v2x::map::Maneuvers) -> alloc::string::Strin
///
/// # Errors
/// Human-readable fatal errors
#[allow(unused, clippy::too_many_arguments, clippy::type_complexity)]
#[allow(clippy::too_many_arguments, clippy::type_complexity)]
pub fn make_small_display<IoScl, IoSda, IoRes, IoDc, IoCs, IoBl, Spi>(
scl: IoScl,
sda: IoSda,
@ -509,7 +505,7 @@ where
///
/// # Errors
/// Human-readable fatal errors
#[allow(unused, clippy::too_many_arguments, clippy::type_complexity)]
#[allow(clippy::too_many_arguments, clippy::type_complexity)]
pub fn make_large_display<IoScl, IoSda, IoRes, IoDc, IoCs, IoBl, Spi>(
scl: IoScl,
sda: IoSda,