From 003acd74831bfb1695478e47d26185f8fb8422cc Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Mon, 25 Aug 2025 14:20:05 +0200 Subject: [PATCH] fw/system/die: do not force vibe off reset_due_to_software_failure can be called from ISR context, and vibe_force_off can potentially block (I2C calls), so if we're unlucky that vibe is ON while we need to reset, well, that's it as bootloader won't turn it off but next system boot. Signed-off-by: Gerard Marull-Paretas --- src/fw/system/die.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/fw/system/die.c b/src/fw/system/die.c index 8005a0fb..6dca92c2 100644 --- a/src/fw/system/die.c +++ b/src/fw/system/die.c @@ -32,9 +32,6 @@ #endif NORETURN reset_due_to_software_failure(void) { - // Make sure vibration is off - vibe_force_off(); - #if PULSE_EVERYWHERE pulse_logging_log_buffer_flush(); #endif