MATLAB Link for Code Composer Studio Development Tools | ![]() ![]() |
Setting Property Values with set
Once you construct a link, the set
function lets you modify its property values.
You can use the set
function to both:
Example--Setting Link Property Values Using set
For example, set the timeout specification for the link cc
from the previous section.
Now use get
to check that the desired changes have been made to cc
.
get(cc) ans = rtdx: [1x1 rtdx] apiversion: [1 0] ccsappexe: [] boardnum: 0 procnum: 0 timeout: 8 page: 0
Notice that the display reflects the changes in the property values.
To display a listing of all of the properties associated with a link cc
that you can set, type
get(cc) ans = rtdx: [1x1 rtdx] apiversion: [1 0] ccsappexe: [] boardnum: 0 procnum: 0 timeout: 10 page: 0
![]() | Properties and Property Values | Retrieving Properties with get | ![]() |