Tool/software:
I use the python library under ti_ticspro to generate our configuration file.
from ti_ticspro import TICSProOptions, APIOptions, StartTICSPro, TICSProTCPClient
apiOptions = APIOptions(EnableAPIServer=True, Port=11001)
tpOptions = TICSProOptions(apiOptions=apiOptions)
_ = StartTICSPro(startupSettings=tpOptions)
tp = TICSProTCPClient(port=11001)
# Start with default settings
tp.SelectDevice('LMK5B12204')
tp.SetMode('EVM Default')
# Set XO
# Frequency settings
tp.SetText('sXO_freq','20e6')
What I see is, that often the doubler under Advanced->APLL1 will not be set. Also the text field under "Set XO" will not be updated. If I change anything by hand everything will work as expected. Also the python commands. But not if python is used for the first setting.