From 7ac809f8b3e981dc925829e5817013dceabbf594 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Wed, 3 Jan 2018 18:41:21 +0000 Subject: [PATCH] urukul: do io reset --- artiq/coredevice/urukul.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/coredevice/urukul.py b/artiq/coredevice/urukul.py index 9eaa4a1e5..28f31f7a5 100644 --- a/artiq/coredevice/urukul.py +++ b/artiq/coredevice/urukul.py @@ -125,7 +125,7 @@ class CPLD: cfg = urukul_cfg(rf_sw=0, led=0, profile=0, att_le=0, io_update=0, mask_nu=0, clk_sel=clk_sel, sync_sel=sync_sel, rst=0, io_rst=0) - self.cfg_write(cfg | (1 << CFG_RST)) + self.cfg_write(cfg | (1 << CFG_RST) | (1 << CFG_IO_RST)) delay(100*us) self.cfg_write(cfg) proto_rev = urukul_sta_proto_rev(self.sta_read())