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.

Upgrade causes warning



I loaded CCS the latest CCS onto a new computer.  My old computer was running v6.1.2, the new is 6.1.3.

I get the following warning when compiling code that it is unclear of the action to take.  Can you point me at some docs that describe what to do?

Warning:

ti.tirtos.TIRTOS: "C:/ti/tirtos_tivac_2_16_01_14/packages/ti/tirtos/TIRTOS.xs", line 49: ti.tirtos.TIRTOS : ti.tirtos.TIRTOS module is no longer required to configure driver instrumentation. Please use the ti.drivers.Config and ti.mw.Config modules instead

  • It looks like you have a newer version of TI-RTOS. We replaced the ti.tirtos.TIRTOS module with the ti.drivers.Config module in the .cfg file. You can import an example from the newer TI-RTOS and open the .cfg file (as text mode...right-click the file and select Open with->Text). You can see the format for the ti.drivers.Config and ti.mw.Config modules. For instance, use the following instead of useModule(ti.tirtos.TIRTOS)
    /* ================ TI-RTOS middleware configuration ================ */
    var mwConfig = xdc.useModule('ti.mw.Config');
    /*
    * Include TI-RTOS middleware libraries
    */



    /* ================ TI-RTOS drivers' configuration ================ */
    var driversConfig = xdc.useModule('ti.drivers.Config');
    /*
    * Include TI-RTOS drivers
    *
    * Pick one:
    * - driversConfig.LibType_NonInstrumented (default)
    * Use TI-RTOS drivers library optimized for footprint and performance
    * without asserts or logs.
    * - driversConfig.LibType_Instrumented
    * Use TI-RTOS drivers library for debugging with asserts and logs enabled.
    */
    driversConfig.libType = driversConfig.LibType_NonInstrumented;
    //driversConfig.libType = driversConfig.LibType_Instrumented;