mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-11 12:27:14 +02:00
bugfix for 12bit to 16 bit expansion in server
This commit is contained in:
@ -1272,7 +1272,7 @@ int Feb_Control_Get16bitConversionDisabled(int *ret) {
|
||||
LOG(logERROR, ("Could not get 16 bit expansion (bit mode)\n"));
|
||||
return 0;
|
||||
}
|
||||
if (regval | DAQ_REG_HRDWRE_DSBL_16BIT_MSK) {
|
||||
if (regval & DAQ_REG_HRDWRE_DSBL_16BIT_MSK) {
|
||||
*ret = 1;
|
||||
} else {
|
||||
*ret = 0;
|
||||
|
Reference in New Issue
Block a user