blob: 46de4f78d619fa5876f1889058f65288db13f9e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#include "dummy_functions.h"
#include "globals.h"
void Menu_Refresh() {}
void Menu_Update_Display() {}
int Menu_Clear_Buttons(void)
{
return 0;
}
int IO_Setup_RS232()
{
return 0;
}
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 ()
{
return 0;
}
unsigned int GPIB_get_SRE ()
{
return 0;
}
unsigned int GPIB_get_ESE ()
{
return 0;
}
unsigned int GPIB_get_STB ()
{
return 0;
}
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_update_shift_registers() { }
int Set_Sav(int setting_num) // FIXME - implement
{
return 0;
}
int Set_Rcl(int setting_num) // FIXME - implement
{
return 0;
}
|