mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-08-30 13:01:16 +02:00
Merge branch 'developer' into dev/xilinx_power_cmd
This commit is contained in:
@@ -23,8 +23,6 @@ jobs:
|
||||
conda activate det
|
||||
cmake .. -DSLS_USE_PYTHON=ON
|
||||
make -j 2
|
||||
cd ../pyctbgui
|
||||
make
|
||||
|
||||
- name: Deploy to NFS update server
|
||||
if: gitea.ref == 'refs/heads/developer'
|
||||
|
||||
@@ -20,8 +20,6 @@ jobs:
|
||||
mkdir build && cd build
|
||||
cmake -DSLS_USE_PYTHON=ON -DPython_EXECUTABLE=/usr/bin/python3.13 -DPython_INCLUDE_DIR=/usr/include/python3.13 -DPython_LIBRARY=/usr/lib64/libpython3.13.so ..
|
||||
make -j 2
|
||||
cd ../pyctbgui
|
||||
make
|
||||
|
||||
- name: Deploy to NFS update server
|
||||
if: gitea.ref == 'refs/heads/developer'
|
||||
|
||||
Binary file not shown.
@@ -1450,12 +1450,6 @@ int validateVchip(int val, char *mess) {
|
||||
LOG(logERROR, (mess));
|
||||
return FAIL;
|
||||
}
|
||||
if (vLimit > 0 && val > vLimit) {
|
||||
sprintf(mess, "Invalid vchip value %d mV. Exceeds vLimit %d mV\n", val,
|
||||
vLimit);
|
||||
LOG(logERROR, (mess));
|
||||
return FAIL;
|
||||
}
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -121,7 +121,7 @@ std::string CreateMasterHDF5File(const std::filesystem::path &filePath,
|
||||
std::mutex *hdf5LibMutex) {
|
||||
|
||||
std::filesystem::path p = filePath / (fileNamePrefix + "_master_" +
|
||||
std::to_string(fileIndex) + ".json");
|
||||
std::to_string(fileIndex) + ".h5");
|
||||
std::string fileName = p.string();
|
||||
|
||||
std::lock_guard<std::mutex> lock(*hdf5LibMutex);
|
||||
|
||||
Reference in New Issue
Block a user