Skip to content

Commit

Permalink
ad53xx: ignore F3 (reserved)
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Jördens <[email protected]>
  • Loading branch information
jordens committed Jan 24, 2019
1 parent bbac924 commit 8c5a502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/coredevice/ad53xx.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def init(self, blind=False):
(AD53XX_CMD_SPECIAL | AD53XX_SPECIAL_CONTROL | 0b0010) << 8)
if not blind:
ctrl = self.read_reg(channel=0, op=AD53XX_READ_CONTROL)
if ctrl != 0b0010:
if (ctrl & 0b10111) != 0b00010:
raise ValueError("DAC CONTROL readback mismatch")
delay(15*us)

Expand Down

0 comments on commit 8c5a502

Please sign in to comment.