Skip to content

Commit

Permalink
900/jungfrau temp control default enable (#1041)
Browse files Browse the repository at this point in the history
* jungfrau: enabling temp control by default at server startup
  • Loading branch information
thattil authored Nov 21, 2024
1 parent d128d44 commit 0b6d0f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ This document describes the differences between v9.0.0 and v8.0.2
getMaxClockPhaseShift


* [Jungfrau] Temperature Control
Temperature control is enabled by default at on-board detector server
startup.
As before, the default temperature threshold is 65°C and crossing this
value will set a temperature event.



2.2 Resolved or Changed Features
================================
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,7 @@ void setupDetector() {
setNextFrameNumber(DEFAULT_STARTING_FRAME_NUMBER);

// temp threshold and reset event
setTemperatureControl(DEFAULT_TMP_CNTRL);
setThresholdTemperature(DEFAULT_TMP_THRSHLD);
setTemperatureEvent(0);
if (getChipVersion() == 11) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
#define DEFAULT_SETTINGS (GAIN0)
#define DEFAULT_GAINMODE (DYNAMIC)
#define DEFAULT_TX_UDP_PORT (0x7e9a)
#define DEFAULT_TMP_CNTRL (1)
#define DEFAULT_TMP_THRSHLD (65 * 1000) // milli degree Celsius
#define DEFAULT_NUM_STRG_CLLS (0)
#define DEFAULT_STRG_CLL_STRT (0xf)
Expand Down
2 changes: 1 addition & 1 deletion slsSupportLib/include/sls/versionAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#define APICTB "9.0.0 0x241107"
#define APIGOTTHARD "9.0.0 0x241107"
#define APIGOTTHARD2 "9.0.0 0x241107"
#define APIJUNGFRAU "9.0.0 0x241107"
#define APIMYTHEN3 "9.0.0 0x241107"
#define APIMOENCH "9.0.0 0x241107"
#define APIXILINXCTB "9.0.0 0x241107"
#define APIEIGER "9.0.0 0x241107"
#define APIJUNGFRAU "9.0.0 0x241120"

0 comments on commit 0b6d0f9

Please sign in to comment.