Merge pull request #1157 from slsdetectorgroup/910/jf_timing_decoder_only_hw2.0
Some checks failed
CMake / Configure and build using cmake (push) Failing after 12s

jf: get timing info decoder only for hw 2.0
This commit is contained in:
maliakal_d 2025-03-18 12:31:45 +01:00 committed by GitHub
commit 34ce96ffa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 4 deletions

View File

@ -11090,12 +11090,19 @@ int get_timing_info_decoder(int file_des) {
functionNotImplemented(); functionNotImplemented();
#else #else
// get only // get only
if (isHardwareVersion_1_0()) {
ret = FAIL;
sprintf(mess, "Could not get timing info decoder. Not supported "
"for hardware version 1.0\n");
LOG(logERROR, (mess));
} else {
ret = getTimingInfoDecoder(&retval); ret = getTimingInfoDecoder(&retval);
LOG(logDEBUG1, ("retval timing info decoder: %d\n", retval)); LOG(logDEBUG1, ("retval timing info decoder: %d\n", retval));
if (ret == FAIL) { if (ret == FAIL) {
strcpy(mess, "Could not get timing info decoder\n"); strcpy(mess, "Could not get timing info decoder\n");
LOG(logERROR, (mess)); LOG(logERROR, (mess));
} }
}
#endif #endif
return Server_SendResult(file_des, INT32, &retval, sizeof(retval)); return Server_SendResult(file_des, INT32, &retval, sizeof(retval));
} }