Breakpoints
- class lauterbach.trace32.rcl.BreakpointService(conn)
- set(*, address=None, size=None, type_=None, impl=None, action=None, core=None, enabled=True)
Set breakpoint
See
Breakpointfor parameter documentation.- Returns:
Result
- Return type:
- Parameters:
- list()
Returns a list of the currently set Breakpoints
- Returns:
Result
- Return type:
List[Breakpoint]
- class lauterbach.trace32.rcl.Breakpoint(conn, *, address=None, size=None, type_=None, impl=None, action=None, core=None, enabled=True)
Breakpoint object.
Detailed information is available in general_ref_b.pdf (see chapter on “Break.Set”).
- Parameters:
address (Optional[Address])
size (Optional[int])
type_ (Optional[Breakpoint.Type])
impl (Optional[Breakpoint.Impl])
action (Optional[Breakpoint.Action])
core (Optional[int])
enabled (bool)
- class Action(value)
An enumeration.
- class Type(value)
An enumeration.
- class Impl(value)
An enumeration.
- delete()
Delete Breakpoint.
- disable()
Disable breakpoint.
- enable()
Enable breakpoint.
- set()
Set Breakpoint.