mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-11 12:27:14 +02:00
set bit and clear bit only verifies that bit (#746)
This commit is contained in:
@ -277,6 +277,9 @@ enum detFuncs {
|
||||
F_SET_SYNCHRONIZATION,
|
||||
F_GET_HARDWARE_VERSION,
|
||||
F_GET_FRONTEND_FIRMWARE_VERSION,
|
||||
F_GET_BIT,
|
||||
F_SET_BIT,
|
||||
F_CLEAR_BIT,
|
||||
|
||||
NUM_DET_FUNCTIONS,
|
||||
RECEIVER_ENUM_START = 512, /**< detector function should not exceed this
|
||||
@ -657,6 +660,10 @@ const char* getFunctionNameFromEnum(enum detFuncs func) {
|
||||
case F_SET_SYNCHRONIZATION: return "F_SET_SYNCHRONIZATION";
|
||||
case F_GET_HARDWARE_VERSION: return "F_GET_HARDWARE_VERSION";
|
||||
case F_GET_FRONTEND_FIRMWARE_VERSION: return "F_GET_FRONTEND_FIRMWARE_VERSION";
|
||||
case F_GET_BIT: return "F_GET_BIT";
|
||||
case F_SET_BIT: return "F_SET_BIT";
|
||||
case F_CLEAR_BIT: return "F_CLEAR_BIT";
|
||||
|
||||
|
||||
case NUM_DET_FUNCTIONS: return "NUM_DET_FUNCTIONS";
|
||||
case RECEIVER_ENUM_START: return "RECEIVER_ENUM_START";
|
||||
|
@ -2,12 +2,12 @@
|
||||
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
||||
/** API versions */
|
||||
#define RELEASE "developer"
|
||||
#define APILIB "developer 0x230224"
|
||||
#define APIRECEIVER "developer 0x230224"
|
||||
#define APIJUNGFRAU "developer 0x230515"
|
||||
#define APIMOENCH "developer 0x230515"
|
||||
#define APIGOTTHARD "developer 0x230224"
|
||||
#define APIGOTTHARD2 "developer 0x230224"
|
||||
#define APIMYTHEN3 "developer 0x230224"
|
||||
#define APILIB "developer 0x230224"
|
||||
#define APIRECEIVER "developer 0x230224"
|
||||
#define APIEIGER "developer 0x230224"
|
||||
#define APIJUNGFRAU "developer 0x230508"
|
||||
#define APIMOENCH "developer 0x230508"
|
||||
#define APICTB "developer 0x230523"
|
||||
|
Reference in New Issue
Block a user