diff options
author | daniel <danieruru@gmail.com> | 2013-01-11 13:38:40 +0900 |
---|---|---|
committer | daniel <danieruru@gmail.com> | 2013-01-11 13:38:40 +0900 |
commit | 939ce4d4b67c068055be6e2ab27cc6144a53d546 (patch) | |
tree | 188cc349bb49a4fc6d89a8849969a48c2b5c508a /gpib.c | |
parent | 557169f71b442ff10406ed764200f95084816fa8 (diff) |
add the missing srq enable, disable checks in gpib for now
Diffstat (limited to 'gpib.c')
-rw-r--r-- | gpib.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -784,9 +784,9 @@ void GPIB_and_VXI_start_query_response(gpointer ignore_this, gchar *in_string) g_assert (ignore_this == NULL); g_assert (in_string != NULL); - if (!globals.HWDetect.gpib) { - return; - } + //if (!globals.HWDetect.gpib) { + // return; + //} if (globals.Registers.pending_output_message != NULL) { queue_error_for_gpib_only(query_error_interrupted); @@ -795,7 +795,7 @@ void GPIB_and_VXI_start_query_response(gpointer ignore_this, gchar *in_string) } globals.Registers.pending_output_message = g_strdup_printf ("%s\n", in_string); - TNT_4882_Status(STB,0x10,SET); // Set MAV bit + //TNT_4882_Status(STB,0x10,SET); // Set MAV bit } |