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.

Rebuilding MSP430Ware's driverlib for TI-RTOS and Its Drivers in IAR

Other Parts Discussed in Thread: MSP430F5438A

Hello,

I just started with TI-RTOS. I am using MSP430F5438a. i tried to build driverlib for MSP430F5438A through the method given in user guide. But i guess that requires Code composer Studio as in command line i am getting error regarding path not found ans its showing some code composers studio address. How to rebuild library in IAR .  

  • There are variables in tirtos.mak to limit which libraries to build: CCS_BUILD, IAR_BUILD and GCC_BUILD. If you only want IAR libraries, please set this to

    CCS_BUILD ?= false
    IAR_BUILD ?= true
    GCC_BUILD ?= false

    Or (since there is the "?=") you can pass them on the command line.

    Todd