What is the command behind "Open Project in Code Composer Studio"

2 vues (au cours des 30 derniers jours)
Gergely Szabó
Gergely Szabó le 15 Juil 2019
Commenté : Gergely Szabó le 23 Sep 2019
Hello everyone!
I am about to do some automation in my code generation, and I also would like to inculde the auto generated CCS project to this.
Does anyone happen to know, what is the command behind "Open Project in Code Composer Studio", which is shown in the Diagnostic viewer?
diagnostic_viewer.png
Best,
Gergely
  2 commentaires
Walter Roberson
Walter Roberson le 15 Juil 2019
If you hover your cursor over it, then possibly it will show the link, probably in the form of a URI that starts with "matlab:"
Gergely Szabó
Gergely Szabó le 15 Juil 2019
Hello Walter!
Thank for the tip. That was my first guess too, but it doesn't work, since this command appears in the Diagnostic Viewer.

Connectez-vous pour commenter.

Réponse acceptée

Venkatesh Chilapur
Venkatesh Chilapur le 12 Sep 2019
Hi Gergely,
The command that creates the link in diagnostic viewer is:
>> Simulink.output.info(DAStudio.message('TIC2000:codegen:OpenCCSProject','ccspath','proj folder'))
We launch the CCS that will import the rtw project by the following command:
codertarget.tic2000.internal.openCCSproject('C:\ti\ccsv7','c:\xyz\c28069blink_cla_ert_rtw\CCS_Project')
Notice the 2 parameters, first is the full path to CCS install, second is the path to the rtw CCS project folder.
You can get the path to CCS install which is provided during support package setup by the following commands:
toolRootDir = codertarget.tic2000.setup.internal.getToolchainScriptingFolder(getActiveConfigSet(bdroot))
//bdroot is model name
CCS_InstallDir = fullfile(toolRootDir,'..','..')
We can rewrite the command to Open CCS now as:
codertarget.tic2000.internal.openCCSproject(CCS_InstallDir,'c:\xyz\c28069blink_cla_ert_rtw\CCS_Project')
HTH,
Regards,
Venkatesh C

Plus de réponses (0)

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by