summaryrefslogtreecommitdiff
path: root/dummy_functions.h
blob: 15cfb1b7648222580fae30a606d39eca8dab87c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef DUMMY_FUNCTIONS_H_
#define DUMMY_FUNCTIONS_H_

#include "globals.h"

void GPIB_Set_Command_Error();
void GPIB_Set_Query_Error();
void GPIB_Set_Device_Dependent_Error();
void GPIB_Set_Execution_Error();
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);
void GPIB_clear_events ();
void GPIB_change_address(int new_address);

void Main_return_to_local();

#endif