Single-stepping through firmware, Pwm demo, Configuration wizard 2 – Silicon Laboratories TOOLSTICK EK User Manual

Page 5: Configuration wizard 2 options, Toolstick-ek

Advertising
background image

ToolStick-EK

Rev. 0.2

5

5.6. Single-Stepping Through Firmware

The IDE supports the ability to single-step through firmware one assembly instruction at a time. The IDE reads the
Flash from device, converts the instructions to assembly and displays them in a disassembly window. The following
steps show how to open the disassembly window and single step through firmware.

1. If a breakpoint is not already set on the line of code that increments the T2_Overflow_Count variable, set

the breakpoint using the steps described in Section 5.5.

2. Start the processor using the “Go” button and wait until it stops on the breakpoint.
3. Select View

→ Debug Windows → Disassembly. The disassembly window will appear on the right-hand

side of the IDE if it is not already open.

4. To execute one assembly instruction at a time, click the “Step” button on the toolbar or select the Debug

Step menu option. The highlighted line in the disassembly window indicates the next instruction to be exe-
cuted. The blue line marker in the editor window will stay on the same .C source line until all of the assem-
bly instructions are completed.

The disassembly window has three columns. The left column is the address of the instruction in Flash. The middle
column is the instruction in hex. The right column is the disassembled instruction. The Disassembly debug window
and the capability to single-step through firmware allows a developer to see exactly what instructions are executed
and their output.

6. PWM Demo

In addition to the demo Blink_LED example software, the ToolStick CD also includes a demo project named
PWM_LED. This demo firmware uses the hardware Programmable Counter Array modules on the C8051F300 in
8-bit PWM mode to drive the LEDs on the ToolStick.

The project and source files for the demo can be found in the C:\SiLabs\MCU\Demos\ToolStick\PWM\ folder.

7. Configuration Wizard 2

Configuration Wizard 2 helps accelerate development by automatically generating initialization source code to con-
figure and enable the on-chip resources needed by most design projects. Configuration Wizard 2 is installed as part
of the demo installation.

This chapter of the User’s Guide describes the basic features and capabilities of Configuration Wizard 2.

7.1. Configuration Wizard 2 Options

When Configuration Wizard 2 is opened, the program lists the device families that it supports. Based on the target
device, first select the device family and then the specific part number.

The default source file that appears initially includes the header file for the device. As the initialization code is gen-
erated for each hardware peripheral, it is added to source file.

Configuration Wizard 2 can output the initialization code in either C or assembly. The selection between C and
assembly is done using the Options

→ Code Format menu option.

Advertising