This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TI RTOS UIA Example for CC13/CC26

Other Parts Discussed in Thread: SYSBIOS, CC2650, CC1350

Hi Team,

Do we have any materials/documentation/examples for the UIA usage for CC13/CC26. I only find some C2000 relative workshop documents.

Thanks!

  • Hi Louis,

    What features are you looking for? The majority of the UIA features are same for all devices. Please note for the CC13xx/CC26xx devices that the kernel logging is disabled if you use the kernel in the ROM. So if you want kernel logging to get things like execution graph, you cannot use the ROM kernel. So you have to comment out the necessary line from 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;

    }

    The simplest way to add in UIA support is to add in LoggingSetup from UIA. This will create 3 stop mode loggers instances. One for kernel logging, one for CPU Load and one for the rest of the application (e.g. drivers and application code).

    Todd

  • Additionally, you might want to look at this forum thread: e2e.ti.com/.../503858

    Todd