09-26-2023 05:27 AM
Hi,
Need to control CCS tool through LabVIEW. Is there any API's are available?
please guide me if any other way is possible to control CCS tool through LabVIEW.
Thanks
Hariram C
09-26-2023 05:36 AM - edited 09-26-2023 05:36 AM
Hi hariram,
hariram.c@tataelxsi.co.in wrote:
Need to control CCS tool through LabVIEW. Is there any API's are available?
please guide me if any other way is possible to control CCS tool through LabVIEW.
Can you please explain the term "CCS tool"? ("Carbon Capture and Storage"?)
What are you trying to achieve?
09-26-2023 06:45 AM
Code Composer Studio Tool it is used to Flash the Microcontroller by using TI Boards ( Texas Instruments ) so if there any possible way For Code Composer Studio to control through LABVIEW?
09-26-2023 06:58 AM
hariram.c@tataelxsi.co.in wrote:
Code Composer Studio Tool it is used to Flash the Microcontroller by using TI Boards ( Texas Instruments ) so if there any possible way For Code Composer Studio to control through LABVIEW?
These tools are usually controlled in one of two ways.
1) Either the tool provides its core functionality as a DLL and has a document that describes the functions in the DLL and how to call them. In that case you could use the Call Library Node to interface to it. But this has several gotchas: The tool provider must have a DLL and according documentation for it, and interfacing DLLs is not for the computer noob.
2) All these tools provide a command line interface. In that case you can test the commands in a Windows Command shell and then transfer them to LabVIEW using the System Exec function. Not as integrated but almost always easier, faster and better documented.
09-26-2023 07:00 AM
Hi Hariram,
hariram.c@tataelxsi.co.in wrote:
Code Composer Studio Tool it is used to Flash the Microcontroller by using TI Boards ( Texas Instruments )
With some context the question becomes much more clear…
Most flashers I worked with so far allow to call an executable with parameters, like "flasher-app.exe -flash hexfile COMport".
Does your CodeComposer allow that too?
hariram.c@tataelxsi.co.in wrote:
any possible way For Code Composer Studio to control through LABVIEW?
I guess you need to read the manual of your CodeComposer tool to learn about its abilities or you ask the TI support!