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.

CC3220S-LAUNCHXL: Issues building cloud ota example

Part Number: CC3220S-LAUNCHXL

Hello
I am trying the Cloud_ota sample by the same procedure, but it seems I can not find the definition of "ORIGINAL_PROJECT_ROOT" in my development environment.
Which procedure do I mistake?
When building, the following message is output.
"**** Build of configuration Release for project ota ****

"C: \\ ti \\ ccsv8 \\ utils \\ bin \ \ gmake" -k all
 
gmake: *** No rule to make target 'C: /ti/ccsv8/eclipse/PARENT-1-ORIGINAL_PROJECT_ROOT/source/CdnClient.c', needed by 'CdnClient.obj'.
"
I tried to reinstall the SDK, but I can not download it again with Resource Explorer. Please tell me how.

CCS 8.1.0.201805221500
CC 3200 SDK 2 _ 20 _ 00 _ 10
Is the development environment.

Thank you.

H. Wt

  • Hi H. Wt,

    You can change the variables in your project Properties > Resource > Linked Resources. You may also want to check out the SimpleLink Academy OTA lab. Task 1 step 2 explains the CdnVendor files and how to resolve your issue: dev.ti.com/.../

    Best regards,
    Sarah
  • Hello Sarah
    thank you for your answer.

    Yes, I am following the instructions of the SimpleLink Academy OTA lab. Task 1.
    I changed the Properties of ota project according to the instructions.
    ota project Properties> Resource> Linked Resources.
    so
    "PROJECT_LOC" -> "ORIGINAL_PROJECT_ROOT"
    Was executed.
    The result was the result of the previous question.

    Attached is ota project Properties.
    Where am I wrong?
    Thank you.

  • Hi H. Wt,

    Can you change the odd symbols in your file path to a slash(/)?

    The easiest option though is to just delete the ota library from your workspace and import the library again with "Copy projects into workspace" unchecked as detailed in step 2.

    Best regards,
    Sarah

  • Hello Sarah
    I am sorry that the reply was delayed.

    Somehow, the build of the ota library succeeded.
    After all, I did not succeed in the way I recommended in my project.
    I changed the parameters and executed it as follows.

    ota project Properties> Resource> Path Variables
    New Add
    Name: "ORIGINAL_PROJECT_ROOT"
    Location: "C:\ti\simplelink_cc32xx_sdk_2_20_00_10\source\ti\net\ota\ccs"

    cloud_ota project Properties> Build > ARM Linker > File Search Path > Include library file... and change the ota.a reference to
    "C:\ti\simplelink_cc32xx_sdk_2_20_00_10\source\ti\net\ota\ccs\Release\ota.a"

    Now the build of cloud_ota succeeded.
    Thank you very much.