From da9cf22bc01cb80f32f598380100cf5601994498 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Thu, 16 Oct 2025 18:35:13 +0200 Subject: [PATCH] also send the bsread timestamp --- dap/accumulator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dap/accumulator.py b/dap/accumulator.py index 19365d1..dfb8d19 100644 --- a/dap/accumulator.py +++ b/dap/accumulator.py @@ -76,6 +76,7 @@ def accumulate(accumulator_addr, bsread_port): for pulse_id, data in ready: timestamp = results["timestamp"] timestamp = make_bsread_timestamp(timestamp, pulse_id) + data["bsread_timestamp"] = timestamp sender.send(pulse_id=pulse_id, data=data, timestamp=timestamp)