From 8510bf4e558d7b4cca64ab0315f99dcd598651c4 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 16 Jul 2020 19:28:58 +0800 Subject: [PATCH] test_analyzer: configure loop_out as output --- artiq/test/coredevice/test_analyzer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/artiq/test/coredevice/test_analyzer.py b/artiq/test/coredevice/test_analyzer.py index 335c941c3..cf8a64540 100644 --- a/artiq/test/coredevice/test_analyzer.py +++ b/artiq/test/coredevice/test_analyzer.py @@ -15,6 +15,8 @@ class CreateTTLPulse(EnvExperiment): def initialize_io(self): self.core.reset() self.loop_in.input() + self.loop_out.output() + delay(1*us) self.loop_out.off() @kernel