µ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

Setup in Detail

Setup in Detail provides configuration examples for the dialog Setup Logic Analyzer.

Analog Signals

Typically, the Display Type Analog is used for A/D or D/A converter VTREGs. This display mode can be used to show values of all variable types.

  • Min and Max define the diagram amplitude range of a signal. The values can be specified in decimal or HEX format.
  • And Mask specifies an AND mask used to strip-off bits that should not be displayed.
  • Shift Right allows to specify a shift factor that performs a division on the input value.

Examples with Display Type Analog:

Variable "tone.y1", Min Value: -32000, Max Value: 32000
Variable "Signal", Min Value: 0, Max Value: 0x2E0, Mask: 0xFFF00, Shift Right: 8

Bit Signals

The Display Type Bit reduces a value to true (= 1) or false (= 0) and is typically used for a single digital I/O pin. This display mode can be applied to any variable. For efficient configuration purposes, variable names of the format Identifier.Bitpos are converted to the Display Type Bit with corresponding And Mask and Shift Right settings.

  • And Mask specifies an AND mask used to strip-off bits that should not be displayed.
  • Shift Right allows to specify a shift factor that performs a division on the input value.

Examples with Display Type Bit:

Variable "PORT0.2"
Variable "PORT2", Mask: 0x10, Shift Right: 4  (Note, the input is identical to PORT2.4)
Variable "flag", Mask: 0xFF, Shift Right: 0

State Diagrams

The Display Type State shows signal transition value changes, and is typical used to show BUS signals.

  • Mask specifies an AND mask used to strip-off bits that should not be displayed.
  • Shift Right allows to specify a shift factor that performs a division on the input value.

Examples with Display Type State:

Variable "DTMF_Input", Mask: 0xF0, Shift Right: 4
Variable "Keys", Mask: 0xFF, Shift Right: 0

Note