MATLAB Link for Code Composer Studio Development Tools    
delete

Remove debug points in addresses or source files in Code Composer Studio

Syntax

Description

delete(cc,addr,'type') removes a debug point located at the memory address identified by 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:

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,'type') lets you specify the line from which you are removing the debug point. Argument 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

address, insert, run


  createobj deleteregister