diff options
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,6 @@ #include <stdlib.h> #include "error_utils.h" - #define DEBUG_ON - uncomment this to have debug messages #ifdef DEBUG_ON @@ -15,7 +14,6 @@ #define g_print_debug(...) {} #endif - #define error_queue_length 512 #define max_commands_in_input 12 #define max_output_length 512 @@ -128,6 +126,7 @@ #define rs232_echo_off 0x00 #define rs232_echo_on 0x20 +long sec_timer (void); typedef struct { int PRIMARY_ADDRESS; /* GPIB chip's GPIB primary address */ @@ -596,6 +595,7 @@ typedef struct { int oper_enable_register; /* for stat:enable command */ int ques_enable_register; /* for stat:enable command */ int flash_writes_suspended; + long startup_timer_value; } GlobalStruct; |