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.

CC3200 Amazon AWS IoT example not working

Other Parts Discussed in Thread: CC3200, CC3200SDK

Hi,

  i am trying to compile the example to connect the CC3200 to the Amazon AWS IoT service.

I am using this oficial guide: http://git.ti.com/iotdev/awsiot/blobs/master/README_CC3200.md , but in point 5:

-> On the command line, enter the following commands to build the application:
->
->    cd <AWS_INSTALL_DIR>/sample_apps/subscribe_publish_sample/platform_tirtos/cc3200
->    C:/ti/xdctools_3_31_01_33_core/gmake all

I get the following error:

C:\ti\iotdev-awsiot-master\iotdev-awsiot\sample_apps\subscribe_publish_sample\platform_tirtos\cc3200>c:\ti\xdctools_3_31_01_33_core\gmake all

C:/Users/vnr001/AppData/Local/Temp/make6684-1.sh: line 1: C:tixdctools_3_31_01_33_core/xs: No such file or directory

gmake: *** [subscribe_publish_sample/compiler.opt] Error 127

I am using Windows 7, what can i do?

Thanks you in advance,

Victor

  • Hi,

    Can you confirm if you have installed all the tools mentioned in the page?
    Also, have you modified "XDC_INSTALL_DIR" to the correct path?

    Regards,
    Gigi Joseph.
  • Hi Gigi Joseph,

    i have installed all the tools mentioned in the page.

    This is the products.mak file:

    # ======== products.mak ========
    #

    ##################### All platforms ####################

    XDC_INSTALL_DIR ?= C:\ti\xdctools_3_31_01_33_core

    ##################### TI-RTOS ####################

    TIRTOS_INSTALL_DIR ?= C:\ti\tirtos_simplelink_2_13_01_09
    BIOS_INSTALL_DIR ?= $(TIRTOS_INSTALL_DIR)/products/<bios_dir>
    UIA_INSTALL_DIR ?= $(TIRTOS_INSTALL_DIR)/products/<uia_dir>
    NS_INSTALL_DIR ?= C:\ti\ns_1_10_00_00_eng

    ##################### TI-RTOS (CC3200) ####################

    CC3200SDK_VERSION = 1.1.0
    CCWARE_INSTALL_DIR ?= $(TIRTOS_INSTALL_DIR)/products/CC3200_driverlib_1.1.0
    CC3200SDK_INSTALL_DIR ?= C:\ti\CC3200SDK_1.1.0

    # Leave assignment empty to disable this toolchain
    TI_ARM_CODEGEN_INSTALL_DIR ?= C:\ti\ccsv6\tools\compiler\ti-cgt-arm_5.2.2

    The only differences are Simplelink version 2.13.01.09 instead of 2.14.01.20 and paths with "\" instead of "/".

    Thanks you in advance,
    Victor
  • BIOS_INSTALL_DIR ?= $(TIRTOS_INSTALL_DIR)/products/<bios_dir>
    UIA_INSTALL_DIR ?= $(TIRTOS_INSTALL_DIR)/products/<uia_dir>

    The name of your bios directory and uia directory above in <> need to be filled in.

  • Heather Barnard:

      Thanks you for your response.

    Finally i figured it out.

    Victor