blob: 69bfa159b1bb272656bedc1a574b9016fa085cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "dummy_functions.h"
void Menu_Refresh() {}
void Menu_Update_Display() {}
void GPIB_Set_Command_Error() {}
void GPIB_Set_Query_Error() {}
void GPIB_Set_Device_Dependent_Error() {}
void GPIB_Set_Execution_Error() {}
void break_up_string(char* response, int n, char* r1, char* r2, char* r3) { }
void Main_update_shift_registers() { }
void IO_output_to_comm_bus(char* w, int n) { } //replace with real function
void Error_check(void* p) { }
int query_int(char* resp, int n)
{
return 0;
}
|