If you install Code Composer Studio and BLE Stack on your D: drive then import the SensorTag project, the project file has incorrect references to your C: drive which results in the build failing. For example, I see this:
include_path="C:/ti/tirtos_simplelink_2_13_00_06/products/cc26xxware_2_21_01_15600" --
which results in this build error:
"D:/ti/ble_cc26xx_2_01_00_44423/Components/ble/ROM/ROM_Init.c", line 44: fatal error #1965: cannot open source file "inc/hw_types.h"
I can fix this using project properties -> Resource -> Linked Resources dialog. The incorrect paths were TI_RTOS_DRIVERS_BASE and CC26XXWARE. These incorrect paths seemed to come from TI_PRODUCTS_DIR which is set to C:\TI even though I explicitly installed the code composer product on D:\TI. The weird thing is that ccs_config.xml is correct.
Unfortunately I'm having trouble figuring out how to change TI_PRODUCTS_DIR, it is not editable...
