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/CC2640R2F: Include ICall dependencies

Part Number: CC2640R2F

Tool/software: Code Composer Studio

Hi,

Im trying to include the ICall dependencies(i.e. ICall file) in my project copying the linked file from the simple_peripheral project but I get an error:

>> Compilation failure

subdir_rules.mk:7: recipe for target 'empty.obj' failed

"../empty.c", line 37: fatal error #1965: cannot open source file "ICall/Icall.h"

1 catastrophic error detected in the compilation of "../empty.c".

Compilation terminated.

gmake: *** [empty.obj] Error 1

does someone know what is missing here?

  • Hello,

    Check your include search path options in the project build properties to make sure the correct path to 'ICall/Icall.h" is there.

    Thanks

    ki

  • Hi Ki,

    Thanks for your hint. To be a little bit more specific, I solve the problem by adding the icall files as linked files and copying the include paths given in simple_peripheral project -->right click:

    Properties>Build>ARM Compiler>Include Options

    Then copied all the paths related to icall(and hal because icall needed it) into the Include Options from my project.

    Thanks