tici: set STM_BOOT0 in reset (#33015)

* tici: reset panda boot0

* ooops
pull/33018/head
Adeeb Shihadeh 9 months ago committed by GitHub
parent f31ad97e92
commit 560e37cd83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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)

Loading…
Cancel
Save