From 0d8745f507738c05069d5562844f67974c3f8fc8 Mon Sep 17 00:00:00 2001 From: Larry Ruckman Date: Thu, 2 Nov 2023 10:30:08 -0700 Subject: [PATCH] Lmx2594.py Update turn off SYNC after the stable state --- python/surf/devices/ti/_Lmx2594.py | 5 +++++ 1 file changed, 5 insertions(+) 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) +