⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delete.m

📁 一个MATLAB的应用程序
💻 M
字号:
function dummy = delete(cc,fileadd,linetype,type)
%DELETE  Remove a debug point from Code Composer Studio(tm)
%   DELETE(CC,ADDR,TYPE) removes a debug point at the specified address
%   of the DSP.  The CC handle defines the DSP target that will 
%   have it's debug point deleted. The debug point location is 
%   defined by it's memory address: ADDR.  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
%
%   DELETE(CC,ADDR) same as above, except the debug types defaults to
%   a breakpoint.
%
%   DELETE(CC,FILE,LINE,TYPE) removes 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 of
%   the breakpoint to be removed.  The supported debug point types 
%   are the same as listed above.
%
%   DELETE(CC,FILE,LINE) same as above, except the debug point defaults to
%   a breakpoint.
%
%   See also INSERT, ADDRESS, RUN.

% Copyright 2002 The MathWorks, Inc.

⌨️ 快捷键说明

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