Texas Instruments

Table of Contents

Example Summary

This example is intended to be a starting point for new development where a fuller set of kernel features and debug capabilities are enabled.

Peripherals Exercised

Example Usage

Application Design Details

This examples is the same as the Empty_Minimal example except many development and debug features are enabled. For example:

The ROM is being used in this example. This is controlled by the following lines in the .cfg file:

    var ROM = xdc.useModule('ti.sysbios.rom.ROM');
    if (Program.cpu.deviceName.match(/CC26/)) {
        ROM.romName = ROM.CC2650;
    }
    else if (Program.cpu.deviceName.match(/CC13/)) {
        ROM.romName = ROM.CC1350;
    }

Since the kernel in the ROM is being used, there is no logging or assert checking done by the kernel.

For IAR users using any SensorTag(STK) Board, the XDS110 debugger must be selected with the 4-wire JTAG connection within your projects’ debugger configuration.

References