TI-RTOS 使用
时间:12-23
整理:3721RD
点击:
Hi,大家好,
要在CC1310项目中使用TI-RTOS了,但实在不知如何下手。
以前使用RT-thread或者ucos的时候,都是直接将系统源代码加入到项目中,使用一个头文件裁剪系统功能。
但是在TI-RTOS中。。。。。。
1. 如何建立一个包含有TI-RTOS的工程?
2. XDCtools是什么,它到底在工程中,加入了哪些功能和函数?
3.如何去掉项目不需要的系统功能?
。。。。。。
你可以以SDK中的empty示例工程为基础,来开发你自己的应用。
这个示例工程帮你搭好了开发TI-RTOS需要的架构和必要的配置。
simplelink_cc13x0_sdk_1_40_00_10中有TI-RTOS的例程的。
XDCtools 在安装Code Composer Studio (CCS)时被作为其中的一部分安装了。XDCtools包含使用RTSC的工具和运行时组件。参考TI WIKI 给出的说明:
http://processors.wiki.ti.com/index.php/How_is_SYS/BIOS_related_to_XDCtools_and_RTSC%3F
- XDCtools provides configuration tools you use to create and build a static configuration as part of your application. This *.cfg configuration file specifies:
- Which modules from XDCtools, SYS/BIOS, and other components to include in the run-time image.
- What static instances of RTOS objects to create. For example, these include tasks and semaphores.
- Settings for parameter values for modules and objects.
- XDCtools provides critical APIs that are used by SYS/BIOS and other related software components. These include memory allocation, logging, and system control.