Hi
I tried CC3200 SDK V1.2.0 with Amazon Web Service following this link.
https://git.ti.com/iotdev/aws-iot-device-sdk-embedded-c/blobs/master/README_CC3200.md
I followed the step by changing all the field needed in product.mak script.
The result is the Compilation failed. There are some missing necessary packages required by XDC tool.
After I added additional path for XDC tool ,the package builder works fine via gmake.
Then there are a few compilation errors due to missing inclusion in makefile.
So It seems to me that there are several big changes from SDK V1.1.0 and SDK V1.2.0 which result in path and component relocations.
I added in a few necessary paths as required by compilation.
The compilation is now OK but when I started to run the cert_flash.
It showed up the crash as following.
Here I also attached the modified aws-iot-device-sdk-embedded-c , there are modifications in product.mak and makefile for both cert and subscribe_publish example.
Note that , this happens to both cert_flash and subscribe_publish examples.
There is one interesting fact.
======================
When I turned on the duplicated symbol checking with linker option,
it seems that there are duplicated symbols on both simplelink.a and native Ti WiFi driver.
The linker prefers the native Ti WiFi driver which (I think) it causes error upon calling _sl_start(0,0,0) and creates the crash.
What do you suggest working aws with SDK V1.2.0?
Could there be any configuration I missed from the example?
Would there be a new example releasing soon?