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/MSP432P401R: linkerror

Part Number: MSP432P401R

Tool/software: Code Composer Studio

Hi

I am using CCS V8 for programming the msp432p401r with FreeRTOS. When I am build the module I am facing the link error.

I have gone through the every link provided for the similar issues and have already done all including the files and etc.

I have followed the http://processors.wiki.ti.com/index.php/Include_paths_and_options also  which did not give me the answer I am attaching the snapshots of the project below

There are no library files only clear .c and .h files and c functions which I am trying to integrate.

Thanks in advance,

Regards 

Basu

  • Hi,

    unresolved symbols are not related to the includes list, they are related to the linking process and needed libraries.

    Please, post your full Console log. 
    Which  Free-RTOS version do you use?
    Did you defined the FREERTOS_INSTALL_DIR mandatory variable?

    The vApplicationIdleHook() is a user defined function.
    You need to implement it!
    The same with the vApplicationMallockFailedHook.

  • Tomasz Kocon said:
    unresolved symbols are not related to the includes list, they are related to the linking process and needed libraries.

    Tom is correct. You are getting a linker error, not a compiler error.

    Please see:

    http://software-dl.ti.com/ccs/esd/documents/sdto_ccs_build-errors.html#error-unresolved-symbols-remain

    Tomasz Kocon said:
    The vApplicationIdleHook() is a user defined function.
    You need to implement it!
    The same with the vApplicationMallockFailedHook.

    Yes, you either need to implement it or include the object file that defines/implements it.

    Thanks

    ki