µVision4 User's Guide

Technical Support

On-Line Manuals

µVision4 User's Guide

About µVision User Interface Creating Applications Utilities Debugging Using the Debugger Simulation Start Debugging Application Program Execution Debug Windows and Dialogs Breakpoints Window Call Stack and Locals Window Code Coverage Command Window Disassembly Window Event Viewer Execution Profiler Instruction Trace Window Logic Analyzer Setup Setup in Detail Restrictions Using the Logic Analyzer Memory Map Memory Window Performance Analyzer Registers Window Serial Window Symbols Window System Viewer Adding System Viewer Windows Toolbox Trace Data Window Trace Navigation Watch Window Expressions Constants System Variables Peripheral Variables I/O Ports Serial Ports Program Variables (Symbols) Fully Qualified Symbols Non-Qualified Symbols Literal Symbols Using Symbols Line Numbers Bit Addresses Type Specifications Operators Memory Type Specifiers Differences Between µVision4 and C Expression Examples Tips and Tricks Review Peripherals and CPU Configuration Simulate I/O Ports Simulate Interrupts and Clock Inputs Simulate external I/O Devices Assign Serial I/O to a PC COM Port Check Illegal Memory Access Command Input from File Preset I/O Ports or Memory Contents Write Debug Output to a File Keyboard Shortcuts TPIU Initialization after RESET (Cortex-M) Debug Commands Debug Functions Simulation Flash Programming Dialogs Example Programs Command Line Appendix

Toolbox

Toolbox Button

The Toolbox contains user-configurable buttons. Click on a Toolbox button to execute the associated debug command or debug function. Toolbox buttons may be executed at any time, even while running the test program.

Define Toolbox buttons in the Command Window with the DEFINE BUTTON command.

The general syntax is:

>DEFINE BUTTON "button_label", "command"
button_labelis the name to display on the button in the Toolbox.
commandis the µVision4 command to execute when the button is pressed.

Toolbox Dialog

Buttons can be redifined by using an existing button label.

The following examples show the define commands used to create the buttons in the Toolbox shown above:

>DEFINE BUTTON "Decimal Output", "radix=0x0A"
>DEFINE BUTTON "Hex Output", "radix=0x10"
>DEFINE BUTTON "My Status Info", "MyStatus ()" /* call debug function */
>DEFINE BUTTON "Analog1 0..3V", "analog0 ()" /* call signal function */
>DEFINE BUTTON "Show R15", "printf (\"R15=%04XH\\n\")"

Note

  • The printf command defined in the last button definition shown above introduces nested strings. The double quote (") and backslash (\) characters of the format string must be escaped with \ to avoid syntax errors.

You can remove a Toolbox button with the KILL BUTTON command and the button number. For example:

>Kill Button 5 /* Remove 'Stop Analog1' button */

Note

  • The Update Windows button in the Toolbox is created automatically and cannot be removed. The Update Windows button updates several debug windows during program execution.