2023-01-11 10:33:01 -05:00
|
|
|
#!/usr/bin/env python
|
2023-03-06 06:41:21 -05:00
|
|
|
"""Automatically reset a TK-1"""
|
|
|
|
|
|
|
|
from usb_test import IceFlasher
|
2022-10-24 11:05:00 -04:00
|
|
|
|
2022-10-25 08:18:04 -04:00
|
|
|
|
2023-03-02 17:52:52 -05:00
|
|
|
def reset_tk1() -> None:
|
|
|
|
""" Reset a TK1 contained in a TP1 programmer
|
|
|
|
|
|
|
|
Manipulate the GPIO lines on the TP1 to issue a hardware reset
|
|
|
|
to the TK1. The result is that TK1 again will be in firmware
|
|
|
|
mode, so a new app can be loaded.
|
|
|
|
"""
|
2023-03-06 06:41:21 -05:00
|
|
|
flasher = IceFlasher()
|
|
|
|
flasher.gpio_set_direction(14, True)
|
|
|
|
flasher.gpio_put(14, False)
|
|
|
|
flasher.gpio_set_direction(14, False)
|
2022-10-24 11:05:00 -04:00
|
|
|
|
2023-03-02 17:52:52 -05:00
|
|
|
|
2022-10-25 08:18:04 -04:00
|
|
|
reset_tk1()
|