User`s guide

open
period MATLAB software w aits for the load. If MATLAB software w aits
more than
timeout seconds, load returns immediately with a timeout
error. Returning a timeout error does not suspend the operation; it
stops MATLAB software from waiting for conrmation for the operation
completion.
open(cc,filename,filetype) lo ads filename into CCS IDE. filename
can be the full path to the le or, if the le is in th e current CCS IDE
working directory, you can use a relative path, such as the name of
the le. Use the
cd function to determine or change your CCS IDE
working directory. You use the
filetype option to override the default
le extension. Refer to the previous syntax for more information about
filetype. When you omit the timeout option in this syntax, MATLAB
software us es the g lobal timeout set in
cc.
open(cc,filename) loads filename into CCS IDE . filename can be
thefullpathtothele or, if the le is in the current CCS IDE working
directory, you can use a relative path, such as the name of the le. Use
the
cd function to determine or change the CCS IDE working directory.
You use the
filetype option to override the default le extension. Refer
to the previous syntax for more information about
filetype.When
you omit the
filetype and timeout optionsinthissyntax,MATLAB
software uses th e global timeout set in
cc, and derives the le type from
the extension in
filename. Refer to the pre vious syntax descriptions for
more information on the input options.
Note You cannot write to or read from channels that you opened but
did not enable.
Examples For RTDX use, open forms part of the function pair you use to open
and enable a communications channel between MATLAB software and
your processor.
cc = ticcs;
rx = cc.rtdx;
open(rx,'ichannel','w');
7-99