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.

CCS: TI-RTOS Logging setup difference in video vs CCSV9

Genius 3300 points


Tool/software: Code Composer Studio

I am learning TI-RTOS from this series: https://training.ti.com/ti-rtos-workshop-series

using CCV9.1

But in 4 video, at around 24:39, it shows UIA services, but in CCV9 example code for CC1310F128 empty RTOS project which i imported. I dont find UIA?

Although logging setup I found, but it misses options like Enable task logging, HWI, SWI etc as in pic.

first pic is of video, second is CCv9 example code which i am using. see the missing options

  • I enable loging setup via available products.. Upon building it generates error as in pic 1.

    After that i enabled this in script file , below two lines, but again error generrated as in pic 2.

    //BIOS.logsEnabled = true;

      BIOS.logsEnabled = false;



  • Hi,

    UIA is part of the SimpleLink SDK. The workshop is getting a little dated. It was made when UIA was a stand-alone product. 

    I'd look in the SimpleLink SDK User Guide to see the difference between the Release kernel project and the Debug kernel project. The Debug one enables logging. Note for the CC13xx devices, the kernel in the ROM does not support logging, so you have to use the kernel in the flash. You can look at the TI-RTOS Basics lab in SimpleLink Academy also to see more details about logging: http://dev.ti.com/tirex/explore/node?node=AAvd2v6HXXe-QpjluM.XgA__pTTHBmu__LATEST

    Todd