refactor: rename deep_sleep to deep_sleep_ms for consistency across the codebase

This commit is contained in:
2026-04-30 20:09:48 +02:00
parent e0b8acd55c
commit 9280bbb244
3 changed files with 5 additions and 5 deletions

View File

@@ -320,7 +320,7 @@ impl<'a> BoardInteraction<'a> for V4<'a> {
self.charger.set_charge_indicator(charging)
}
async fn deep_sleep(&mut self, duration_in_ms: u64) -> ! {
async fn deep_sleep_ms(&mut self, duration_in_ms: u64) -> ! {
self.awake.set_low();
self.charger.power_save();
self.esp.deep_sleep(duration_in_ms);