diff --git a/python/surf/devices/ti/_Lmx2594.py b/python/surf/devices/ti/_Lmx2594.py index 6ad9bd6a11..ab225e960a 100644 --- a/python/surf/devices/ti/_Lmx2594.py +++ b/python/surf/devices/ti/_Lmx2594.py @@ -257,3 +257,8 @@ def LoadCodeLoaderHexFile(arg): # 6. Program register R0 one additional time with FCAL_EN = 1 to ensure that the VCO calibration runs from a stable state. self.DataBlock.set(value=(data|0x8), index=0, write=True) + + # Turn off the SYNC after the stable state + self.DataBlock.set(value=0x0000, index=0x22, write=True) + self.DataBlock.set(value=0x0780, index=0x24, write=True) +