From 71a68c20228cd641487ce209a37003c49c01cd5c Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Wed, 8 Apr 2020 11:58:59 +0200 Subject: [PATCH] eiger transmitting fix in 10g mode (stop servers informed about 10g mode) --- slsDetectorSoftware/src/Module.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/slsDetectorSoftware/src/Module.cpp b/slsDetectorSoftware/src/Module.cpp index bcf5f89a9..a8a41517e 100755 --- a/slsDetectorSoftware/src/Module.cpp +++ b/slsDetectorSoftware/src/Module.cpp @@ -3216,6 +3216,10 @@ bool Module::enableTenGigabitEthernet(int value) { int retval = -1; LOG(logDEBUG1) << "Enabling / Disabling 10Gbe: " << value; sendToDetector(F_ENABLE_TEN_GIGA, value, retval); + if (value != -1) { + int stopRetval = -1; + sendToDetectorStop(F_ENABLE_TEN_GIGA, value, stopRetval); + } LOG(logDEBUG1) << "10Gbe: " << retval; value = retval; if (shm()->useReceiverFlag && value != -1) {