From 2b506a3c4bd7bc72a79b72ba442b870e988147ec Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 7 May 2016 18:28:07 +0800 Subject: [PATCH] examples/photon_histogram: delay after count() --- .../master/repository/coredevice_examples/photon_histogram.py | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq/examples/master/repository/coredevice_examples/photon_histogram.py b/artiq/examples/master/repository/coredevice_examples/photon_histogram.py index 6c9f21fa2..241f2c852 100644 --- a/artiq/examples/master/repository/coredevice_examples/photon_histogram.py +++ b/artiq/examples/master/repository/coredevice_examples/photon_histogram.py @@ -54,6 +54,7 @@ class PhotonHistogram(EnvExperiment): total = 0 for i in range(self.repeats): + delay(0.5*ms) n = self.cool_detect() if n >= self.nbins: n = self.nbins - 1