µ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

Simulate Interrupts and Clock Inputs

µVision4 simulates the behavior of the I/O inputs. If an I/O pin is configured as counter input, then the count value increments when the pin toggles. The following example shows how to simulate input for Counter 3:

// in your C user program
T3CON = 0x004B;              // set T3 Counter Mode

You may toggle the counter input P3.6 with the VTREG PORT3, i.e. with a signal function:

signal void ToggleT3Input (void) {
  while (1) {
    PORT3 = PORT3 ^ 0x0040;             // toggle P3.6
    twatch (CLOCK / 100000);            // with 100kHz
  }
}

Timer/Counter Peripheral Dialog

View of the Counter 3 status with the Peripheral dialog.

Also, interrupt inputs are simulated: if a port pin is used as interrupt input, then the interrupt request will be set when you toggle the associated I/O pin.