From 751af3144e83707a2345e132ab47cf13565303bb Mon Sep 17 00:00:00 2001 From: SingularitySurfer Date: Tue, 21 Jun 2022 07:43:28 +0000 Subject: [PATCH] fix old line that I forgot --- artiq/coredevice/phaser.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/artiq/coredevice/phaser.py b/artiq/coredevice/phaser.py index b620e653e..c418f990d 100644 --- a/artiq/coredevice/phaser.py +++ b/artiq/coredevice/phaser.py @@ -1073,9 +1073,7 @@ class PhaserChannel: data = 1 if hold == 1: data = data | (1 << 1) - if bypass: - hold = 1 - data = (profile << 2) | (hold << 1) | (bypass << 0) + data = data | (profile << 2) self.phaser.write8(addr, data) @kernel