To display information about the other commands available in MDB, type
help others.
Table 2-5 provides additional information for this command.
|
help other - Prints a list of commands.
|
|
quit - Exits the debugger.
|
|
The tool property name and value are from the project properties that are selected when creating the project in MPLAB X IDE. IMPORTANT: The Set command must be executed before the program command is issued, otherwise the changes to the tool properties will be ignored.
Command format: Set tool-property-name value Example:
Set programoptions.eraseb4program true
Refer to Table 2-6 for other tool properties options that can used with the Set command.
Refer to Table 2-7 for simulator options that can be used with the Set command.
|
|
Makes the current script processor sleep until specified milliseconds have elapsed.
Command format: Sleep milliseconds
|
|
The Wait command makes the current script processor wait until the debugger halts before processing the next command.
Wait Milliseconds makes the processor process the next command if the debugger does not halt and milliseconds have elapsed.
Command format: Wait [milliseconds]
|
|
Prints a table of all breakpoints that have been set and not deleted. Optional argument n means print information only about the specified breakpoint. For each breakpoint the following columns are printed:
• |
Enabled or Disabled - Enabled breakpoints are marked with ‘y’. ‘n’ marks breakpoints that are not enabled. |
• |
Address - Where the breakpoint is in your program, as a memory address. |
• |
What - Where the breakpoint is in the source for your program, as a file and line number. |
Command format: info breakpoints [n]
|