diff options
author | daniel <danieruru@gmail.com> | 2012-09-28 14:45:34 +0900 |
---|---|---|
committer | daniel <danieruru@gmail.com> | 2012-09-28 14:45:34 +0900 |
commit | 131d5ec32ca62c06f1eed9ee282bb15f814f4ba8 (patch) | |
tree | c5aa8015fd026708bcaaa5a14a63fa1de1303af0 /gpib.h | |
parent | 923c8ce77ea407f3b50999447bc1d774f6a7d5e0 (diff) | |
parent | bc066aa6f5b6c69a29109a2405e8a91c55d2fade (diff) |
Merge branch 'master' of grenfell.avtechpulse.com:Instrument
Diffstat (limited to 'gpib.h')
-rw-r--r-- | gpib.h | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +/* define macros */ + +void GPIB_Set_Execution_Error(void); +void GPIB_Set_Command_Error(void); +void GPIB_Set_Query_Error(void); +void GPIB_Set_Device_Dependent_Error(void); +void GPIB_initialize(void); +void GPIB_change_address(int new_address); +int GPIB_check_for_device_clear_signal(void); +int GPIB_check_for_device_clear_signal(void); +int GPIB_check_for_messages(char *gpib_buf); +int GPIB_handle_new_input(char *gpib_buf); +int GPIB_send_query_response(char *out_buffer); +void GPIB_check_remote_status (int *is_remote, int *is_lockout); +unsigned char GPIB_response_already_pending (); +void GPIB_go_to_local (); +void GPIB_clear_events (); +unsigned int GPIB_get_ESR (); +unsigned int GPIB_get_SRE (); +unsigned int GPIB_get_ESE (); +unsigned int GPIB_get_STB (); +void GPIB_set_ESR (unsigned int byte,int operation); +void GPIB_set_SRE (unsigned int byte,int operation); +void GPIB_set_ESE (unsigned int byte,int operation); + |