tici: set STM_BOOT0 in reset (#33015)

* tici: reset panda boot0

* ooops
old-commit-hash: 560e37cd83
fix-exp-path
Adeeb Shihadeh 9 months ago committed by GitHub
parent 85b77e0387
commit acdbe2440f
  1. 2
      system/hardware/tici/hardware.py

@ -563,8 +563,10 @@ class Tici(HardwareBase):
def reset_internal_panda(self): def reset_internal_panda(self):
gpio_init(GPIO.STM_RST_N, True) gpio_init(GPIO.STM_RST_N, True)
gpio_init(GPIO.STM_BOOT0, True)
gpio_set(GPIO.STM_RST_N, 1) gpio_set(GPIO.STM_RST_N, 1)
gpio_set(GPIO.STM_BOOT0, 0)
time.sleep(1) time.sleep(1)
gpio_set(GPIO.STM_RST_N, 0) gpio_set(GPIO.STM_RST_N, 0)

Loading…
Cancel
Save