From 560e37cd83c51149328aedc83b7d34c40941bf46 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 18 Jul 2024 18:48:54 -0700 Subject: [PATCH] tici: set STM_BOOT0 in reset (#33015) * tici: reset panda boot0 * ooops --- system/hardware/tici/hardware.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/hardware/tici/hardware.py b/system/hardware/tici/hardware.py index a5dee88b56..eb524dbafa 100644 --- a/system/hardware/tici/hardware.py +++ b/system/hardware/tici/hardware.py @@ -563,8 +563,10 @@ class Tici(HardwareBase): def reset_internal_panda(self): gpio_init(GPIO.STM_RST_N, True) + gpio_init(GPIO.STM_BOOT0, True) gpio_set(GPIO.STM_RST_N, 1) + gpio_set(GPIO.STM_BOOT0, 0) time.sleep(1) gpio_set(GPIO.STM_RST_N, 0)