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/CC3220SF-LAUNCHXL: Can't install simplylink academy

Part Number: CC3220SF-LAUNCHXL
Other Parts Discussed in Thread: CC3200, CC3220SF

Tool/software: Code Composer Studio

Hi to all,

I'm new to CC3200 and resource explorer. I follow this academy instructions to test http functionality.

I'm halted in TASK1 section 3, when I must install simplilink academy files.

When I click on "Download & Install" in resource explore inside CCS, I ha an error "This package is not supported on win32" but I have a windows 7 64 bit .

How can I resolve this issue?

Thanks.

  • Hello,
    There seems to be some issues with the 2.x versions of the SDK. I suggest user the older 1.60.00.04 version.

    If you are unsure how to change the software version, see:
    software-dl.ti.com/.../ccsv7_resource_explorer.html

    Thanks
    ki
  • Thanks for your help. Now Resource explorer works well.

    But I have some problem in rebuil the project (task 8).

    First I need to change Board.h and CC3220SF_LAUNCHXL.c files:
    - Board.h don't had definition of board_LED0;
    - CC3220SF_LAUNCHXL.c use some sharp display;
    I copied in my project the same file from network_terminal example.

    Seconds. When I compile the project, Heva many error related to linking:
    error #10008-D: cannot find file "ti/grlib/lib/ccs/m4/grlib.a"
    error #10008-D: cannot find file "third_party/spiffs/lib/ccs/m4/spiffs.a"
    error #10008-D: cannot find file "third_party/fatfs/lib/ccs/m4/fatfs.a"
    error #10010: errors encountered during linking; "portable_CC3220SF_LAUNCHXL_tirtos_ccs.out" not built

    I followed every steps of Portable + wifi accedemy example, I don't find the problem.
    Can you give me some suggestions?
  • Antonino Battaglia19 said:
    First I need to change Board.h and CC3220SF_LAUNCHXL.c files:
    - Board.h don't had definition of board_LED0;
    - CC3220SF_LAUNCHXL.c use some sharp display;
    I copied in my project the same file from network_terminal example.

    I would check with the device experts in the CC32xx device forum. They can help best

    Antonino Battaglia19 said:
    Seconds. When I compile the project, Heva many error related to linking:
    error #10008-D: cannot find file "ti/grlib/lib/ccs/m4/grlib.a"
    error #10008-D: cannot find file "third_party/spiffs/lib/ccs/m4/spiffs.a"
    error #10008-D: cannot find file "third_party/fatfs/lib/ccs/m4/fatfs.a"
    error #10010: errors encountered during linking; "portable_CC3220SF_LAUNCHXL_tirtos_ccs.out" not built

    These are standard linker errors. It could not find the above libraries. Please double check your project linker options and make sure the library search paths are set correctly.

    Thanks

    ki