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.

Attempting to build TI-RTOS libraries and drivers for MSP430F5528

Other Parts Discussed in Thread: MSP430F5528

Hi,    When I execute gmake from the cmd prompt I get an error message about the root directory specified in drivers.bld

Please see the attached text copied from the cmd window.

After looking at the file drivers.bld,  I am quite unsure about how to correctly edit this file.

I have also attached a text copy of tirtos.mak.

Thank you for your help.

Roy

0083.cmd_prompt_mak_errors.txt2450.tirtos.txt

  • Hi Roy,

    I am moving this thread to the TI-RTOS forum where their experts should be able to properly address your question.

    Regards,
    Ryan
  • Hi Roy,
    The error I'm seeing is that the msp430 compiler tool ca't be located with the provided path. Can you verify this path exists: c:/ti/ccsv6/tools/compiler/ti-cgt-msp430_4.4.3 ? Make sure that if your version of CCS has a different version, the "ti-cgt-msp430_4.4.3" in the path has to be updated to match yours. Also you should not have to edit the drivers.bld file just make sure that all the paths provided in tirtos.mak are valid paths on your machine.

    Let me know if this helps
    Moses
  • Hi Moses,

    Per your instructions I edited line 34 of tirtos.mak so that it matches my compiler folder:   ti-cgt-msp430_4.4.7

    Please see the attached copy tirtos.txt

    The execution of gmake went a lot further than last time.

    The first error message was then displayed:  "Failed to match a default include file"

    Please see the attached text from the command prompt.

    The path and file do exist on my c drive:            c:/ti/ccsv6/ccs_base/msp430/include/msp430.h

    As you can see a lot more additional errors followed, before the process terminated.

    Thank you for your help.

    Roy

    1207.fatal_error_line_1844.txt4743.tirtos.txt

  • Hi Roy,

        Taking a look at your tirtos.mak file, I see in line 105 that you have "MSP430DEVLIST := MSP430F55528,". There's a typo due to the extra 5 in MSP430F5528. The part name is used to define a symbol, __MSP430F5528__ that's used to include the right header file in msp430.h for your device. Due to the typo __MSP430F55528__ couldn't resolve to any valid header file. I think you should be good after fixing that.

    Let me know if this helped.

    Moses

  • Hi Moses,

    Thank you very much for catching my foolish mistake.

    I will fix this error, and hopefully be on my way !

    Roy