diff options
Diffstat (limited to 'gpib.c')
-rw-r--r-- | gpib.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -413,6 +413,13 @@ static void TNT_Gen_Error(int code) /*----------------------------------------------------------------------------------------------------------*/ void GPIB_initialize(void) { + // The RST_GPIB pin should already be low - defaults to low at + // power on. + bus_setpin(RST_GPIB, 0); + g_usleep(1); + bus_setpin(RST_GPIB, 1); + g_usleep(100); + INTERFACE_STATUS=0; /* Initialize Globals to zero */ INTERFACE_ERROR=0; DATA_COUNT=0; |