MATLAB Link for Code Composer Studio Development Tools | ![]() ![]() |
Remove debug points in addresses or source files in Code Composer Studio
Syntax
Description
delete(cc,addr,'
removes a debug point located at the memory address identified by type'
)
addr
for your target digital signal processor. Object cc
identifies which target has the debug point to delete. CCS provides several types of debug points. To learn more about the behavior of the various debugging points refer to your CCS documentation. Options for type
include the following to remove Breakpoints and Probe Points:
break
' -- removes a breakpoint. This is the default .
break
'.
probe
' -- removes a Probe Point.
Unlike CCS, you cannot enter addr
as a C function name, valid C expression, or a symbol name.
When the type you specify does not match the debug point type at the selected location, or no debug point exists, the MATLAB Link for Code Composer Studio returns an error reporting that it could not find the specified debugging point.
delete(cc,addr)
is the same as the previous syntax except the function defaults to 'break
' for removing a breakpoint.
delete(cc,filename,line,'
lets you specify the line from which you are removing the debug point. Argument type
'
)
line
specifies the line number in the source file file
in CCS. line
, in decimal notation, defines the line number of the debugging point to remove. To identify the source file, argument filename
contains the name of the file in CCS, entered as a string in single quotation marks. type
accepts one of two strings -- break
or probe
-- as defined previously. When 'type
'
does not match the debug point type at the specified location, or no debug point exists, the MATLAB Link for Code Composer Studio returns an error that it could not find the debug point.
delete(cc,filename,line)
defaults to 'break
' to remove a breakpoint.
See Also
![]() | createobj | deleteregister | ![]() |