insert.m

来自「一个MATLAB的应用程序」· M 代码 · 共 31 行

M
31
字号
function dummy = insert(cc,fileadd,linetype,type)
%INSERT Adds a debug point into Code Composer Studio(tm)
%   INSERT(CC,ADDR,TYPE) places a debug point at the provided address
%   of the DSP.  The CC handle defines the DSP target that will 
%   receive the new debug point. The debug point location is 
%   defined by ADDR, the desired memory address.  Code Composer 
%   provides several types of debug points. Refer to the Code 
%   Composer help documentation for information on their respective 
%   behavior. The following debug TYPE options are supported:
%    'break' or '' - Breakpoint (default)
%    'probe'  - Probe Point
%    'profile' - Profile Point
%
%   INSERT(CC,ADDR) same as above, except the debug point defaults to
%   a breakpoint.
%
%   INSERT(CC,FILE,LINE,TYPE) places a debug point at the specified line
%   in a source file of Code Composer.  The FILE parameter gives the
%   name of the source file, while LINE defines the line number to
%   receive the breakpoint.   Code Composer provides several
%   types of debug points.  Refer to Code Composer documentation for
%   information on their respective behavior. Refer to the previous list
%   of supported point types.
%
%   INSERT(CC,FILE,LINE) same as above, except the debug point defaults to
%   a breakpoint.
%
%   See also DELETE, ADDRESS, RUN.

% Copyright 2002 The MathWorks, Inc.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?