From 317c257778edbbda1b0d87426379368e0126de0b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 26 Mar 2022 16:01:03 +0800 Subject: [PATCH] examples: work around NAC3 segfault --- artiq/examples/nac3devices/nac3devices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/examples/nac3devices/nac3devices.py b/artiq/examples/nac3devices/nac3devices.py index caf65abae..c76c4a09a 100644 --- a/artiq/examples/nac3devices/nac3devices.py +++ b/artiq/examples/nac3devices/nac3devices.py @@ -31,7 +31,7 @@ class NAC3Devices(EnvExperiment): ttl0_counter: KernelInvariant[EdgeCounter] grabber0: KernelInvariant[Grabber] fastino0: KernelInvariant[Fastino] - phaser0: KernelInvariant[Phaser] + # NAC3TODO segfault phaser0: KernelInvariant[Phaser] def build(self): self.setattr_device("core") @@ -48,7 +48,7 @@ class NAC3Devices(EnvExperiment): self.setattr_device("ttl0_counter") self.setattr_device("grabber0") self.setattr_device("fastino0") - self.setattr_device("phaser0") + # NAC3TODO segfault self.setattr_device("phaser0") @kernel def run(self):