urukul: don't pulse DDS_RST on init

closes m-labs/artiq#940

Apparently, if the DDS are reset, every other time they don't work
properly.
pull/969/head
Robert Jördens 2018-03-20 16:10:26 +00:00
parent a185e8dc52
commit f17c0abfe4
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ class CPLD:
Resets the DDS and verifies correct CPLD gateware version.
"""
cfg = self.cfg_reg
self.cfg_reg = cfg | (1 << CFG_RST) | (1 << CFG_IO_RST)
self.cfg_reg = cfg | (0 << CFG_RST) | (1 << CFG_IO_RST)
proto_rev = urukul_sta_proto_rev(self.sta_read())
if proto_rev != STA_PROTO_REV_MATCH:
raise ValueError("Urukul proto_rev mismatch")