csplus.get_all_breakpoints
|
This function gets information of all breakpoints.
[Specification format]
csplus.get_all_breakpoints()
|
[Argument(s)]
None
[Return value]
List: The returned list contains information of a breakpoint in the format.
'index, enabled, type, temporary, location'
|
|
index
|
The index of this breakpoint in the list of all breakpoints.
|
enabled
|
Whether this breakpoint is enabled or not
|
type
|
The type of this breakpoint. Can be "hardware", "software" or "regular"
|
temporary
|
Whether this breakpoint is temporary breakpoint or not
|
location
|
Information about the location the breakpoint is set.
Can be a number (e.g. "0xffc00000"), a function (e.g. "main") or a source line (e.g. "ccrx.c:30")
|
[Detailed description]
- | This function gets information of all breakpoints. Only address breakpoint, function breakpoint and line breakpoint will be included in the returned list. |
[Example of use]
>>> csplus.get_all_breakpoints()
['0,true,hardware,false,RL78_F13.c:26', '1,true,hardware,false,RL78_F13.c:30']
|