MATLAB Link for Code Composer Studio Development Tools | ![]() ![]() |
Creating and Querying Links for CCS IDE
In this tutorial section you create the connection between MATLAB and Code Composer Studio IDE. This connection, or link, is represented by a MATLAB object, which for this session you save as variable cc
. You use function ccsdsp
to create link objects. When you create links, ccsdsp
input arguments let you define other link properties, such as the global timeout. Refer to the ccsdsp
documentation for more information on these input arguments.
Use the generated link cc
to direct actions to your target processor. In the following tasks, cc
appears in all function syntax that interact with CCS IDE and the target:
ccsdsp
. If CCS IDE was not running before you established the new link, CCS starts and gets placed in the background.
visible
, controls the state of Code Composer Studio on your desktop. visible
accepts Boolean inputs that make Code Composer Studio either visible on your desktop (input to visible
visible
= 0). For the rest of this tutorial you need to interact with CCS IDE so we use visible
to set the CCS IDE visibility to 1.
info
--return a structure of testable target conditions
disp
--print information about the target CPU
isrunning
--return the state (running or halted) of the CPU
isrtdxcapable
--return whether the target handle RTDX
![]() | Selecting Your Target | Loading Files into CCS | ![]() |