Freescale Semiconductor Microcontrollers User Manual

Page 759

Advertising
background image

Debugger Engine Commands

Debugger Commands

759

Microcontrollers Debugger Manual

Components

Debugger engine.

Example:

in>BD

Fibonacci 0x805c T

Fibonacci 0x8072 P

Fibonacci 0x8074 T

main 0x8099 T

One permanent and two temporary breakpoints are set in the function Fibonacci,
and one temporary breakpoint is set in the main function.

NOTE

From the list, it is not possible to know if a breakpoint is disabled or not.

BS

BS sets a temporary (T) or a permanent (P) breakpoint at the specified address. If no P or
T is specified, the default is a permanent (P) breakpoint.

Equivalent Operation

You can point at a statement in the Assembly or Source component window, right-
click and choose Set Breakpoint in the context menu, or open the Controlpoints
Configuration Window and choose Show Breakpoint, then select the breakpoint
and set its properties.

NOTE

Correct module names are displayed in the Module component window. Make
sure that the module name of your command is correct:
If the .abs is in HIWARE format, some debug information is in the object
file (.o), and module names have a .o extension (e.g., fibo.o). In ELF
format, module name extensions are .c, .cpp or .dbg (.dbg for program
sources in assembler) (e.g., fibo.c), since all debugging information is
contained in the .abs file and object files are not used. Adapt the following
examples with .abs application file format.

Advertising