From ff6a04f89a04e62c779bb99267598ccd4bbfc420 Mon Sep 17 00:00:00 2001 From: Leonardo Hax Damiani Date: Fri, 15 Jul 2022 10:50:41 +0200 Subject: [PATCH] updated timing parameter --- eiger/xbl-daq-28/start_requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eiger/xbl-daq-28/start_requests.py b/eiger/xbl-daq-28/start_requests.py index 0f8dc7c..86b0b20 100644 --- a/eiger/xbl-daq-28/start_requests.py +++ b/eiger/xbl-daq-28/start_requests.py @@ -20,7 +20,7 @@ def prepare_det(dr): stop_data = {'cmd': "STOP"} r = requests.post(url=urljoin(URL,DET), headers=headers, json=stop_data) print("Configuring the detector...") - data_config = {"det_name":"eiger","config":{"frames":5000, "triggers":1, "exptime":0.0005, "period": 0.001, "timing":"auto", "tengiga":1, "dr":dr}} + data_config = {"det_name":"eiger","config":{"frames":5000, "triggers":1, "exptime":0.0005, "period": 0.001, "timing":"auto_timing", "tengiga":1, "dr":dr}} r = requests.post(url=urljoin(URL,DET), headers=headers, json=data_config) print("Starting the detector...") start_data = {'cmd':"START"}