Skip to content

Commit

Permalink
examples: work around NAC3 segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Mar 26, 2022
1 parent d2add0a commit 317c257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions artiq/examples/nac3devices/nac3devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -48,7 +48,7 @@ def build(self):
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):
Expand Down

0 comments on commit 317c257

Please sign in to comment.