summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@fedora-arm.domain.avtechpulse.com>1999-12-31 19:32:23 -0500
committerroot <root@fedora-arm.domain.avtechpulse.com>1999-12-31 19:32:23 -0500
commit58b03f6b9bd96fb6de58e9a75b9af5fab7e3fab0 (patch)
treecffeacc2c0ae0c8c759ee6b779a1feb997754aa6
parentb79cf089944f6e6f78f34c37f44c632efa780e6e (diff)
gpib works now
-rw-r--r--gpib.c2
-rw-r--r--instr-daemon.c5
-rw-r--r--parser.c4
3 files changed, 6 insertions, 5 deletions
diff --git a/gpib.c b/gpib.c
index dee8b66..8d02267 100644
--- a/gpib.c
+++ b/gpib.c
@@ -242,7 +242,7 @@
int INTERFACE_ERROR; /* Error Code */
int INTERFACE_STATUS; /* Interface Status */
-unsigned int MR_4882_status[5]; /* 4882 status memory registers */
+unsigned char MR_4882_status[5]; /* 4882 status memory registers */
unsigned long int DATA_COUNT; /* Transfer count */
unsigned long int Requested_Count; /* Requested transfer count */
diff --git a/instr-daemon.c b/instr-daemon.c
index d3fcf5e..24c6132 100644
--- a/instr-daemon.c
+++ b/instr-daemon.c
@@ -227,7 +227,7 @@ int main(int argc, char **argv)
LCD_write(2,0,message);
g_free (message);
-// GPIB_initialize();
+ GPIB_initialize();
IO_Setup_RS232( globals.Flash.baud,
globals.Flash.parity,
@@ -324,7 +324,7 @@ static gboolean periodic_poll (void)
//
// FIXME - comment out everything up to "return TRUE" if this section
// is crashing due to non-functional bus
-/* GPIB_check_for_device_clear_signal();
+ GPIB_check_for_device_clear_signal();
if (GPIB_check_for_messages(globals.Registers.gpib_buffer)) {
if (GPIB_handle_new_input(globals.Registers.gpib_buffer)) {
// FIXME check_for_ctrl_mode_changes();
@@ -332,7 +332,6 @@ static gboolean periodic_poll (void)
}
}
GPIB_check_for_device_clear_signal();
-*/
return TRUE;
}
diff --git a/parser.c b/parser.c
index 86285f4..b1fe924 100644
--- a/parser.c
+++ b/parser.c
@@ -1081,7 +1081,9 @@ void Parser_main (char *raw_in, int interactive_terminal, void(*cbfunc)(gpointer
(*cbfunc)(user_data, error_response);
}
} else {
- (*cbfunc)(user_data, response);
+ if (interactive_terminal) {
+ (*cbfunc)(user_data, response);
+ }
}
g_free (units);