MATLAB Link for Code Composer Studio Development Tools | ![]() ![]() |
Display the properties of a link to CCS IDE or an RTDX link
Syntax
Description
Similar to omitting the closing semicolon from an expression on the command line, except that display
does not display the variable name. display
provides a formatted list of the property names and property values for a a link to CCS IDE. To return the configuration data, display
calls the function disp
.
The following example illustrates the default display for a link to CCS IDE.
cc=ccsdsp; display(cc) CCSDSP Object: API version : 1.0 Processor type : C67 Processor name : CPU Running? : No Board number : 0 Processor number : 0 Default timeout : 10.00 secs RTDX channels : 0
Examples
Try this example to see the display for an RTDX link to a target processor.
cc = ccsdsp; rx=(cc.rtdx) % Assign the RTDX portion of cc to rx. RTDX channels : 0 display(rx) RTDX channels : 0
![]() | disp | enable | ![]() |