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.

RTOS/SW-EK-TM4C129EXL: TI-RTOS Static Driver Configuration

Part Number: SW-EK-TM4C129EXL
Other Parts Discussed in Thread: EK-TM4C129EXL

Tool/software: TI-RTOS

                     

                         I am working with TI-RTOS with EK-TM4C129EXL. I want to configure the drivers statically using GUI XGCONF. TI-RTOS version of CCS doesn't support the static Configuration of the Drivers. If static configuration of drivers is not possible using GUI on TI-RTOS version 2_16_00_08. Do I have to use the API's to configure drivers like Timers, SPI??

  • Hi Naveen,

    The static configuration of the TI-RTOS Drivers really only brings in the TI-RTOS Driver libraries and the allows you to use an instrumented or non-instrumented library. The "real" configuration of the drivers (e.g. which pins to use) are done in the "Board" files (e.g. EK_TM4C129EXL.c).

    To pull in the TI-RTOS drivers in the 2_16 release, you simply use
    var driversConfig = xdc.useModule('ti.drivers.Config'); in the .cfg.

    You can still select instrumented or non-instrumented via
    driversConfig.libType = driversConfig.LibType_NonInstrumented;
    //driversConfig.libType = driversConfig.LibType_Instrumented;

    Todd