TI-RTOS
TI-RTOS is an embedded tools ecosystem created and offered by Texas Instruments for use across a range of their embedded system processors. It includes a real-time operating system component-named TI-RTOS Kernel, networking connectivity stacks, power management, file systems, instrumentation, and inter-processor communications like DSP/BIOS Link. It is free and open-source software, released under a BSD license.
TI-RTOS can be used within TI's Code Composer Studio integrated development environment, IAR Systems' IAR Embedded Workbench, and the GNU Compiler Collection. Separate versions of TI-RTOS are provided to support TI's MSP43x, SimpleLink Wireless MCU, Sitara, Tiva C, C2000, and C6000 lines of embedded devices.
TI-RTOS provides system services to an embedded application, such as preemptive multitasking, memory management, and real-time analysis. TI-RTOS can be used in different microprocessors, with different processing and memory constraints. It is supported by Secure Sockets Layer and Transport Layer Security libraries such as WolfSSL.
History
The roots of TI-RTOS were originally developed by Spectron Microsystems as the first RTOS developed specifically for digital signal processors and was named SPOX. Spectron eventually also developed a second product named BIOSuite that included a real-time kernel and various associated tools.Spectron Microsystems was eventually acquired by Texas Instruments and the SPOX and BIOSuite products were merged into one microkernel product named DSP/BIOS. The DSP/BIOS RTOS product underwent significant changes to its application programming interface in version 6.0. With the release of version 6.3 in August 2010, DSP/BIOS was renamed SYS/BIOS to reflect its support for microcontrollers beyond DSPs. With the release of version 6.40 in April 2014, SYS/BIOS was renamed TI-RTOS Kernel and made a component of the TI-RTOS product suite.
TI-RTOS 1.00 was released initially in July 2012. for TI's microprocessors The 2.00 release of TI-RTOS in April 2014 completed the renaming process and integrated the TI-RTOS Kernel and other components under one software umbrella.
Component overview
TI-RTOS consists of many components for Kernel, Drivers and Board Initialization, Network Services, Interprocessor Communication, Instrumentation, and File Systems.Licensing
Most of the TI-RTOS components are released under the BSD License. Any user can rebuild the kernel using the included source code.RTOS Kernel Overview
Organization
The TI-RTOS Kernel is made up of a number of discrete components, called modules. Each module can provide services via an API and is individually configurable. A developer can choose whether this module is included in the runtime image or optimized out. If included, the user can configure various aspects of the Semaphore module, and instances of semaphores to be created on system start up. The module provides an API so that semaphores can be created, posted, pended, and deleted as an embedded program runs.Threading
TI-RTOS Kernel supports different types of threads in an embedded system.- Hardware Interrupt : support threads initiated by a hardware interrupt.
- Software Interrupt : structured to be similar to Hwis, but allow processing to be deferred until after a hardware interrupt has completed.
- Task: a discrete thread that can execute or block while waiting for an event to occur.
- Idle: the lowest priority thread that only runs when no other thread is ready to execute.
Memory management