From ab8bb9ef31390ed9feb39c82211f6887924bcde3 Mon Sep 17 00:00:00 2001 From: Fabian Schwartau Date: Wed, 19 Oct 2022 15:45:45 +0200 Subject: [PATCH] Fixed two too low delay values in Phaser init Signed-off-by: Fabian Schwartau --- artiq/coredevice/phaser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/coredevice/phaser.py b/artiq/coredevice/phaser.py index c9bf0c479..785067a3f 100644 --- a/artiq/coredevice/phaser.py +++ b/artiq/coredevice/phaser.py @@ -237,7 +237,7 @@ class Phaser: for data in self.dac_mmap: self.dac_write(data >> 16, data) - delay(40*us) + delay(120*us) self.dac_sync() delay(40*us) @@ -616,7 +616,7 @@ class Phaser: .. note:: Synchronising the NCO clears the phase-accumulator """ config1f = self.dac_read(0x1f) - delay(.1*ms) + delay(.4*ms) self.dac_write(0x1f, config1f & ~int32(1 << 1)) self.dac_write(0x1f, config1f | (1 << 1))