📄 animate.m
字号:
function dummy = animate(cc)
%ANIMATE Run application until breakpoint is reached.
% ANIMATE(CC) is similar to the RUN method. It causes the target
% DSP processor to execute until a breakpoint is reached. The
% target is then halted and information in Code Composer Studio(tm)
% is updated. However, unlike RUN, the ANIMATE method will resume
% execution after the information is updated. The execution will
% continue to cycle through break/run phases until the target
% is manually halted.
%
% Unlike the RUN or RESTART methods, there is no timeout option
% for ANIMATE. This method always returns immediately. If the
% DSP execution must be stopped, the user should manually invoke
% the HALT method.
%
% See also RUN, HALT, RESTART.
% $Revision: 1.10 $ $Date: 2002/06/12 15:30:48 $
% Copyright 2001-2002 The MathWorks, Inc.
error(nargchk(1,1,nargin));
if ~ishandle(cc),
error('First Parameter must be a CCSDSP Handle.');
end
ccsmexswitchyard([32,cc.boardnum,cc.procnum,0,0]);
% [EOF] animate.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -