This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LMX2594EVM: TICS Pro Control With MATLAB

Part Number: LMX2594EVM

Hello,

I am interested in using a MATLAB script to control the TICS Pro software. I want to be able to write to registers on the LMX2594EVM from a MATLAB script. Is there a way to control the TICS Pro GUI through MATLAB?

Thanks,

Alex

  • You can using ActiveX/COM automation.

    You need to create an object to "TICSPro.ActiveX"; here is a Python example:

    import win32com.client
    ticsapp = win32com.client.Dispatch("TICSPro.ActiveX");
    ticsapp.Initialize(r"C:\Program Files (x86)\Texas Instruments\TICS Pro")

    then

    ticsapp.SetFieldValue("PLL_N", 123)

    or

    ticsapp.SetText("FRAC_ORDER", "2nd Order Modulator")

    73,
    Timothy