Phaser: Make set_nco_phase set the phase of the NCO

Previous to this commit `set_nco_phase()` set the phase of the DUC instead
of the NCO. Setting the phase of the NCO may be desirable to utilise the
auto-sync functionality of the double-buffered DAC-NCO settings.

Signed-off-by: Marius Weber <marius.weber@physics.ox.ac.uk>
pull/1657/head
Marius Weber 2021-05-11 23:16:14 +01:00
parent fb6fad7c64
commit 129cf8c1dd
1 changed files with 1 additions and 1 deletions

View File

@ -889,7 +889,7 @@ class PhaserChannel:
:param phase: NCO phase in turns
"""
pow = int32(round(phase*(1 << 16)))
self.set_duc_phase_mu(pow)
self.set_nco_phase_mu(pow)
@kernel
def set_att_mu(self, data):