mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-19 16:27:13 +02:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
2f2fe4dd47 |
@ -157,10 +157,20 @@ set(CMAKE_INSTALL_RPATH $ORIGIN)
|
|||||||
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
|
||||||
|
|
||||||
|
|
||||||
|
set(ZeroMQ_HINT "" CACHE STRING "Hint where ZeroMQ could be found")
|
||||||
#From: https://github.com/zeromq/cppzmq/
|
#Adapted from: https://github.com/zeromq/cppzmq/
|
||||||
if (NOT TARGET libzmq)
|
if (NOT TARGET libzmq)
|
||||||
find_package(ZeroMQ 4 QUIET)
|
if(ZeroMQ_HINT)
|
||||||
|
message(STATUS "Looking for ZeroMQ in: ${ZeroMQ_HINT}")
|
||||||
|
find_package(ZeroMQ 4
|
||||||
|
NO_DEFAULT_PATH
|
||||||
|
HINTS ${ZeroMQ_DIR}
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
find_package(ZeroMQ 4)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# libzmq autotools install: fallback to pkg-config
|
# libzmq autotools install: fallback to pkg-config
|
||||||
if(NOT ZeroMQ_FOUND)
|
if(NOT ZeroMQ_FOUND)
|
||||||
|
29
RELEASE.txt
29
RELEASE.txt
@ -1,14 +1,13 @@
|
|||||||
SLS Detector Package 5.1.0 released on xx.xx.2020 (Minor Release)
|
SLS Detector Package 5.1.0 released on 22.03.2020 (Minor Release)
|
||||||
===================================================================
|
===================================================================
|
||||||
|
|
||||||
This document describes the differences between 5.1.0 and 5.x.x releases.
|
This document describes the differences between 5.1.0 and 5.0.1 releases.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CONTENTS
|
CONTENTS
|
||||||
--------
|
--------
|
||||||
1. Topics Concerning
|
1. New Features
|
||||||
2. New Features
|
|
||||||
2. Resolved Issues
|
2. Resolved Issues
|
||||||
3. Known Issues
|
3. Known Issues
|
||||||
4. Firmware Requirements
|
4. Firmware Requirements
|
||||||
@ -16,22 +15,14 @@ This document describes the differences between 5.1.0 and 5.x.x releases.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
1. Topics Concerning
|
|
||||||
====================
|
|
||||||
|
|
||||||
- potentital memory leak in receiver
|
1. New Features
|
||||||
- scanParameters in Python
|
|
||||||
- cmk.sh refactored
|
|
||||||
- m3 settings and threshold
|
|
||||||
|
|
||||||
|
|
||||||
2. New Features
|
|
||||||
===============
|
===============
|
||||||
|
|
||||||
Client
|
Client
|
||||||
------
|
------
|
||||||
|
|
||||||
1. Aded settings and threshold features for Mythen3.
|
1. Added settings and threshold features for Mythen3.
|
||||||
2. Internal modification of acquire for Mythen3.
|
2. Internal modification of acquire for Mythen3.
|
||||||
3. Added getMaster for Mythen3
|
3. Added getMaster for Mythen3
|
||||||
4. Mythen3, API function to set pattern from memory
|
4. Mythen3, API function to set pattern from memory
|
||||||
@ -43,7 +34,7 @@ This document describes the differences between 5.1.0 and 5.x.x releases.
|
|||||||
1. Setting timing to auto, sets timing to trigger for slaves
|
1. Setting timing to auto, sets timing to trigger for slaves
|
||||||
|
|
||||||
|
|
||||||
3. Resolved Issues
|
2. Resolved Issues
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
||||||
@ -61,6 +52,8 @@ This document describes the differences between 5.1.0 and 5.x.x releases.
|
|||||||
|
|
||||||
2. cmk.sh refactored to have better option handling
|
2. cmk.sh refactored to have better option handling
|
||||||
|
|
||||||
|
3. Fixed hardcoded path accidentally ending up in the exported CMake package
|
||||||
|
|
||||||
Server
|
Server
|
||||||
--------
|
--------
|
||||||
|
|
||||||
@ -70,7 +63,7 @@ This document describes the differences between 5.1.0 and 5.x.x releases.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
4. Firmware Requirements
|
3. Firmware Requirements
|
||||||
========================
|
========================
|
||||||
|
|
||||||
Mythen3: 0x210201
|
Mythen3: 0x210201
|
||||||
@ -81,14 +74,14 @@ This document describes the differences between 5.1.0 and 5.x.x releases.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
5. Known Issues
|
4. Known Issues
|
||||||
===============
|
===============
|
||||||
|
|
||||||
No updates from 5.0.0
|
No updates from 5.0.0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
6. Download, Documentation & Support
|
5. Download, Documentation & Support
|
||||||
====================================
|
====================================
|
||||||
|
|
||||||
Download
|
Download
|
||||||
|
@ -50,12 +50,12 @@ args = parser.parse_args()
|
|||||||
|
|
||||||
servers = [
|
servers = [
|
||||||
"eigerDetectorServer",
|
"eigerDetectorServer",
|
||||||
# "jungfrauDetectorServer",
|
"jungfrauDetectorServer",
|
||||||
# "mythen3DetectorServer",
|
"mythen3DetectorServer",
|
||||||
# "gotthard2DetectorServer",
|
"gotthard2DetectorServer",
|
||||||
# "gotthardDetectorServer",
|
"gotthardDetectorServer",
|
||||||
# "ctbDetectorServer",
|
"ctbDetectorServer",
|
||||||
# "moenchDetectorServer",
|
"moenchDetectorServer",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -47,7 +47,7 @@
|
|||||||
#define DEFAULT_HIGHGAIN_VRPREAMP (1300)
|
#define DEFAULT_HIGHGAIN_VRPREAMP (1300)
|
||||||
#define DEFAULT_STANDARD_VRSHAPER (1280)
|
#define DEFAULT_STANDARD_VRSHAPER (1280)
|
||||||
#define DEFAULT_FAST_VRSHAPER (1500)
|
#define DEFAULT_FAST_VRSHAPER (1500)
|
||||||
#define DEFAULT_HIGHGAIN_VRSHAPER (900)
|
#define DEFAULT_HIGHGAIN_VRSHAPER (1100)
|
||||||
|
|
||||||
#define DEFAULT_READOUT_C0 (10) //(100000000) // rdo_clk, 100 MHz
|
#define DEFAULT_READOUT_C0 (10) //(100000000) // rdo_clk, 100 MHz
|
||||||
#define DEFAULT_READOUT_C1 (10) //(100000000) // smp sample clk (x2), 100 MHz
|
#define DEFAULT_READOUT_C1 (10) //(100000000) // smp sample clk (x2), 100 MHz
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/** API versions */
|
/** API versions */
|
||||||
#define GITBRANCH "5.1.0.rc2"
|
#define GITBRANCH "5.1.0"
|
||||||
#define APICTB 0x210225
|
#define APICTB 0x210225
|
||||||
#define APIGOTTHARD 0x210225
|
#define APIGOTTHARD 0x210225
|
||||||
#define APIGOTTHARD2 0x210225
|
#define APIGOTTHARD2 0x210225
|
||||||
|
Reference in New Issue
Block a user