To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

TI-RTOS
DeveloperTexas Instruments
Written inC
OS familyReal-time operating systems
Working stateCurrent
Source modelOpen source
Initial release1985; 38 years ago (1985)
Latest release2.21.01.08 / February 2018; 5 years ago (2018-02)
Marketing targetEmbedded systems
Available inEnglish
PlatformsTMS320 DSPs, ARM, MSP430
Kernel typeMicrokernel
LicenseBSD, EULA
Official websitewww.ti.com/tool/ti-rtos

TI-RTOS is an embedded tools ecosystem created and offered by Texas Instruments (TI) for use across a range of their embedded system processors. It includes a real-time operating system (RTOS) component named TI-RTOS Kernel (formerly named SYS/BIOS, which evolved from DSP/BIOS), 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 (IDE), IAR Systems' IAR Embedded Workbench, and the GNU Compiler Collection (GCC). Separate versions of TI-RTOS are provided to support TI's MSP43x (including MSP432), 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 (SSL) and Transport Layer Security (TLS) libraries such as wolfSSL.[1]

YouTube Encyclopedic

  • 1/5
    Views:
    11 107
    3 145
    8 586
    11 134
    4 701
  • TI-RTOS Overview
  • Getting Started with TI-RTOS: Chapter 0—workshop intro & OOB
  • Creating an RTOS project in Code Composer Studio (CCS)
  • TI-RTOS Operating System Components
  • Getting Started with TI-RTOS: Chapter 1—tools/SDK installation

Transcription

History

The roots of TI-RTOS were originally developed by Spectron Microsystems (a subsidiary of Dialogic Corporation) 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[2] 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 (API) in version 6.0.[3] With the release of version 6.3 in August 2010, DSP/BIOS was renamed SYS/BIOS to reflect its support for microcontrollers beyond DSPs.[4] 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.[5]

TI-RTOS 1.00 was released initially in July 2012.[6] for TI's microprocessors[7] 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

Through special plugins provided by Texas Instruments, GStreamer makes use of hardware acceleration provided by e.g., Texas Instruments DaVinci.

TI-RTOS consists of these components, some of which are unavailable for all embedded target families:

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[8] is made up of a number of discrete components, called modules. Each module can provide services via an API and is individually configurable. For example, system semaphores are provided by a module named ti.sysbios.knl.Semaphore. 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 also provides an API so that semaphores can be created, posted, pended, and deleted as an embedded program runs.

Threading

TI-RTOS Kernel provides support for several different types of threads in an embedded system.

  • Hardware Interrupt (Hwi): support threads initiated by a hardware interrupt.
  • Software Interrupt (Swi): 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

TI-RTOS Kernel provides tooling to set up an embedded system's memory map and allow memory buffers to be allocated and deallocated while the system runs. The type of memory manager used during runtime is configurable so that memory fragmentation can be minimized as needed.

Real-time debugging

TI-RTOS Kernel provides modules that allow it to provide information about how the system is executing. This includes how different threads are loading the CPU over time, and logging events as they occur in both the system application and within the TI-RTOS Kernel. Also, the Code Composer Studio IDE can take this logged data and graphically display it for analysis.

References

  1. ^ "Speed Up Development: Code Composer Studio with TI-RTOS and wolfSSL". wolfSSL. 2015-08-13. Retrieved 2019-02-19.
  2. ^ Texas Instruments to Acquire Spectron Microsystems from Dialogic Corporation, Press Release January 22, 1998
  3. ^ Differences Between DSP/BIOS and SYS/BIOS, Texas Instruments Wiki
  4. ^ SYS/BIOS Product Download Pages
  5. ^ SYS/BIOS 6.40.01.15 GA Release Notes
  6. ^ TI-RTOS Product Releases and Download Links
  7. ^ TI offers scalable thread-aware RTOS spanning full MCU portfolio
  8. ^ TI-RTOS Kernel software page on TI website

External links


This page was last edited on 15 October 2023, at 03:35
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.