# CC1310开发环境搭建 #
对于CC1310开发所有的工具、SDK、开发软件、文档,建议直接从官方下载。整个CC13xx/CC26x0 系列所有资料更新频率相当快。熟悉从TI官方找资料,对于我们以后开发调试解决问题至关重要。
我们详细归纳了CC1310开发的可能用到的所有工具集CC1310开发工具集介绍,同时维护一个[百度网盘](https://pan.baidu.com/s/1i4WHeRV)供大家下载。
在进行SDK和IDE搭建前,有必要强调下,对于SDK和IDE我们都强烈建议**C盘**默认路径安装,对于**C盘**存储空间不足,及时清理。
## CC1310 SDK 下载和安装 ##
* [CC1310 Product Main Page](http://www.ti.com/product/CC1310/toolssoftware)
* [SimpleLink? Sub-1 GHz CC13x0 Software Development Kit](http://www.ti.com/tool/simplelink-cc13x0-sdk)
打开CC1310 产品主页,切换 Tools & software -> Software -> SimpleLink? Sub-1 GHz CC13x0 Software Development Kit 进行下载;
![](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/download.png)
> **注意**:这里需要确定IC型号区分SDK版本,选择相对应的SDK。下载需要登录TI账号,同时需要完善产品信息。注意区分产品应用场景,一定不要勾选 `Military` 军品,否则下载请求会被TI否决。
```
What end-equipment/application will you use this file for:
Military(军用,一定不能勾选)
Civil(民用)
```
我们这里选择 SIMPLELINK-CC13X0-SDK(Version: 1.40.00), 成功下载`simplelink_cc13x0_sdk_1_40_00_10.exe` 安装包后,直接双击安装。
>**注意**:这里请选择默认路径安装,也就是`C:\ti`。如果C盘存储空间不够,请清理后安装,后面我们会详细讲解其他非默认目录安装。
![选择安装路径](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/installfloder.png)
![安装完成](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/installfinish.png)
成功安装后我们需要仔细阅读下RleaseNote,在C:\ti\simplelink_cc13x0_sdk_1_40_00_10目录下找到release_notes_simplelink_cc13x0_sdk_1_40_00_10.html。打开该文档在`Dependencies`目录下我们能够知道官方在 **Code Composer Studio: 7.2.0** 上编译测试的。对于CC1310 IDE的选择就只有CCS,代码,文档和项目,安装SDK还会安装TI-RTOS软件包和XDC工具。以下列出了使用此SDK支持和测试的软件和工具。
- [CCS IDE 7.2](http://www.ti.com/tool/ccstudio-wcs)
- TI 15.4-Stack SDK 2.2.0
- TI-RTOS 3.20.00.17
- XDC Tools 3.50.02.20
- SmartRF? Flash Programmer 2 1.7.5
## CCS ##
### 安装 ###
* 下载协议栈指定版本的CCS离线安装包[CCS IDE 7.2](http://www.ti.com/tool/ccstudio-wcs) `CCS7.2.0.00013_win32.zip`。下载完成后直接解压到ASCII字符目录,不要放在包含中文的路径下。否则将直接报错,阻止继续安装。为了不必要麻烦,安装过程中请关闭杀毒软件。
>**注意**:尽量选择离线安装包,同时解压路径不包含中文和非ASCII字符的路径下,安装过程中需要关闭杀毒软件。
* 双击`ccs_setup_7.2.0.00013.exe`安装根据开发情况选择对应的产品线安装,对于CC1310开发,我们只需要选择SimpleLink CC13xx and CC26xx Wireless MCUs。
![选择安装组件](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/seleect_packages.png)
![选择仿真器驱动](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/select_debug.png)
![安装过程](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/install_process.png)
### Troubleshooting ###
#### Your installer source path contains non-ASCII characters ####
```
Unicode character Check -> Your installer source path contains non-ASCII characters which can corrupt the installation. Please change the path before installing.
```
![安装失败,路径包含非法字符](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/install_error.png)
对于离线安装包,解压路径一定不要包含非ASCII字符(中文、空格等)。
#### We have detected you are running anti-virus software on this computer ####
出现如下提示,需要先关闭杀毒软件再点击Continue(某些电脑上就算关闭了第三方杀毒软件还是会提示,这可能是系统自带的杀毒软件还在运行,遇到这种情况若能关闭最好,不能关闭也可点击Continue,通常是能够正常安装)。
![安装失败,检测到杀毒软件](http://www.leconiot.com/md_res/cc1310/get_started/development_environment_set_up/images/install_error.png)
```
Anti-Virus Check -> We have detected you are running anti-virus software on this computer. To ensure no problems occur during the installation, it is highly recommended that real-time file scanning be turned off before proceeding with the installation.
```
安装过程中需要关闭杀毒软件,否则会报错。
#### The web installer is not able to access ####
```
The web installer is not able to access http://software-dl.ti.com/ccs/esd/CCSv7/CCS7.2.0.00013_win32 and cannot proceed. This could be a network proxy issue or an issue with the server.
Please check your proxy settings.
Alternatively you can download the complete installation image from
http://processors.wiki.ti.com/index.php/Download_CCS
Would you like to continue?
```
此错误发生在在线安装包不能连接网络的过程,所以这里建议选择离线安装包。
## 加入我们 ##
文章所有代码、工具、文档开源。加入我们[**QQ群 593145299**](https://jq.qq.com/?_wv=1027&k=512J9pr)获取更多支持,共同研究Contiki应用和TI-15.4Stack。