diff options
Diffstat (limited to 'bus.c')
-rw-r--r-- | bus.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -389,6 +389,12 @@ void bus_init() // the POWER_FAIL pin is an input gpio_changedirection(gpio_pins[POWER_FAIL], false); + + // reset the TNT4882 chip + bus_setpin(RST_GPIB, 0); + g_usleep(10); + bus_setpin(RST_GPIB, 1); + g_usleep(10); } } |