This commit is contained in:
2020-06-30 11:59:35 +02:00
parent 488e0230ba
commit ff729fb43f
8 changed files with 0 additions and 33 deletions

View File

@ -120,7 +120,6 @@ int program_fpga(int);
int reset_fpga(int);
int power_chip(int);
int set_activate(int);
int prepare_acquisition(int);
int threshold_temp(int);
int temp_control(int);
int temp_event(int);

View File

@ -240,7 +240,6 @@ void function_table() {
flist[F_RESET_FPGA] = &reset_fpga;
flist[F_POWER_CHIP] = &power_chip;
flist[F_ACTIVATE] = &set_activate;
flist[F_PREPARE_ACQUISITION] = &prepare_acquisition;
flist[F_THRESHOLD_TEMP] = &threshold_temp;
flist[F_TEMP_CONTROL] = &temp_control;
flist[F_TEMP_EVENT] = &temp_event;
@ -3819,26 +3818,6 @@ int set_activate(int file_des) {
return Server_SendResult(file_des, INT32, &retval, sizeof(retval));
}
int prepare_acquisition(int file_des) {
ret = OK;
memset(mess, 0, sizeof(mess));
LOG(logDEBUG1, ("Preparing Acquisition\n"));
#ifndef EIGERD
functionNotImplemented();
#else
// only set
if (Server_VerifyLock() == OK) {
ret = prepareAcquisition();
if (ret == FAIL) {
strcpy(mess, "Could not prepare acquisition\n");
LOG(logERROR, (mess));
}
}
#endif
return Server_SendResult(file_des, INT32, NULL, 0);
}
// stop server
int threshold_temp(int file_des) {
ret = OK;