Skip to content

Commit

Permalink
feat(tracking): Ensure fixed tones are enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
tristpinsm committed Sep 13, 2024
1 parent c176770 commit 0fd0581
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sodetlib/operations/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import matplotlib.pyplot as plt
from matplotlib.patches import Rectangle

from . import uxm_setup


def compute_tracking_quality(S, f, df, sync):
"""
Expand Down Expand Up @@ -554,6 +556,10 @@ def relock_tracking_setup(S, cfg, bands=None, reset_rate_khz=None, nphi0=None,
res.find_bad_chans()
res.save()

# if fixed tones are configured, ensure they haven't been turned off
for band in bands:
uxm_setup.turn_on_fixed_tones(S, cfg, band)

is_interactive = plt.isinteractive()
try:
if not show_plots:
Expand Down

0 comments on commit 0fd0581

Please sign in to comment.