SimpleLink MCU SDK Driver API Reference

Table of Contents


TI-Drivers Overview

TI-Drivers is a collective of peripheral drivers for TI's SimpleLink portfolio. The drivers are centered around a portable application programming interface (API) which enables seamless migration across the SimpleLink SDK portfolio. Unless specifically stated otherwise, TI-Drivers are designed to be thread safe and work seamlessly inside of a real time operating system (RTOS) application. All TI-Driver implementations utilize the Power driver APIs to ensure low power consumption at all times. The drivers support TI-RTOS (SYS/BIOS) and NoRTOS with examples provided for each variant. Lastly, the drivers are supported by SysConfig to enable easy re-configuration of the drivers.

Features:
  • Portable APIs
  • Native support for TI-RTOS and NoRTOS usage
  • Thread safe APIs
  • SysConfig support
  • Example usage
  • Power driver support


Drivers and Documentation

Shown below is a matrix of available drivers and documentation.

Note
Please view the Device Specific driver implementations as they may contain or exclude certain features that are defined in the top level interfaces.
TI-Drivers Implementations
Driver Interfaces CC13XX & CC26XX
Implementations
Module
Interfaces
Supported Device
Wildcards
ADC.h ADCCC26XX.h ADC CC13XX, CC26XX
ADCBuf.h ADCBufCC26X2.h ADC CC13X2, CC26X2
ADCBufCC26XX.h CC13XX, CC26XX
AESCBC.h AESCBCCC26XX.h AES CC13XX, CC26XX
AESCCM.h AESCCMCC26XX.h AES CC13XX, CC26XX
AESCTR.h AESCTRCC26XX.h AES CC13XX, CC26XX
AESCTRDRBG.h AESCTRDRBGXX.h AES CC13XX, CC26XX
AESECB.h AESECBCC26XX.h AES CC13XX, CC26XX
AESGCM.h AESGCMCC26XX.h AES CC13XX, CC26XX
DMA UDMACC26XX.h µDMA CC13XX, CC26XX
ECDH.h ECDHCC26X2.h AES CC13X2, CC26X2
ECDSA.h ECDSACC26X2.h AES CC13XX, CC26XX
ECJPAKE.h ECJPAKECC26X2.h AES CC13X2, CC26X2
GPIO.h GPIOCC26XX.h IOC
PINCC26XX.h
CC13XX, CC26XX
GPTimer GPTimerCC26XX.h General-Purpose Timers CC13XX, CC26XX
I2C.h I2CCC26XX.h I2C CC13XX, CC26XX
I2S.h I2SCC26XX.h I2S CC13XX, CC26XX
ITM.h ITMCC26XX.h Instrumentation Trace Macrocell CC13XX, CC26XX
NVS.h NVSCC26XX.h VIMS CC13XX, CC26XX
NVSRAM.h
NVSSPI25X.h SSI
PDM PDMCC26XX.h PDM CC13XX, CC26XX
PIN.h PINCC26XX.h IOC CC13XX, CC26XX
Power.h PowerCC26X2.h Power, Reset, and Clock Management CC13XX, CC26XX
PWM.h PWMTimerCC26XX.h General-Purpose Timer
GPTimerCC26XX.h
CC13XX, CC26XX
SHA2.h SHA2CC26X2.h SHA CC13X2, CC26X2
SD.h SDSPI.h SSI
SPI.h
CC13XX, CC26XX
SPI.h SPICC26X2DMA.h SSI CC13XX, CC26XX
Temperature.h TemperatureCC26X2.h Battery Monitor and
Temperature Sensor (BATMON)
CC26X2RB
Timer.h TimerCC26XX.h General-Purpose Timer
GPTimerCC26XX.h
CC13XX, CC26XX
TRNG.h TRNGCC26XX.h TRNG CC13XX, CC26XX
UART.h UARTCC26XX.h
UARTCC26X2.h
UART CC13XX, CC26XX
UART2.h UART2CC26X2.h UART CC13X2, CC26X2
Watchdog.h WatchdogCC26XX.h Watchdog Timer CC13XX, CC26XX

Display Driver

The Display driver is designed to abstract operations & considerations specific to a given output method.

Display Driver Interface Implementations
Display.h DisplayDogm1286.h
DisplayHost.h
DisplayExt.h
DisplayUart.h


Driver Apps

These helper apps utilize TI drivers and are available to user applications.

Modules Interfaces Descriptions
Button.h GPIO.h Provides an API for button-like hardware attached to device pins.
LED.h GPIO.h Provides an API for LEDs attached to device pins.
PWM.h


Driver Utilities

These utilities are helper modules available to drivers.

Module Description
List.h Double linked list
Random.h Fast and light-weight pseudo random number generator
RingBuf.h Array-based ring buffer for bytes
SDFatFS.h Wrapper to enable the use of file systems for the SD driver.
SPIFFSNVS.h Enables NVS as the physical layer to read/write memory for the SPIFFS file system


Driver Configuration

The generic driver interface defines a configuration structure using the typedef keyword. The name of this declared type follows the naming pattern <driver>_Config. A driver is configured by declaring an array of this configuration data structure. Each config array index contains pointers to other data objects necessary for the driver to function at runtime. These data objects may include a hardware attributes, a function table, and object memory. Multiple indexes of the config array should not share these data objects--with the exception of the function table. Each index of the config array supports an independent instance of the driver.

Warning
The declared array, <driver>_Config, must have a specific C identifier. This identifies follows the case-sensitive pattern <driver>_config.
The configuration must also contain a count of indexes in the <driver>_config. This must also have a specific C identifier following the case-sensitive pattern <driver>_count. The data type must be a uint_least8_t.

The driver interface is joined together during the link process at build time. The <driver>_config and <driver>_count symbols are resolved.


Driver Configuration Files

The driver configuration files contain all driver configurations needed by TI-Drivers at runtime. The SysConfig tool is used to automatically generate the TI-Driver's configuration files. Two files are presently generated for TI-Drivers:


Driver Objects

The driver objects are device specific structures that hold data for an instance of a driver. The driver objects are used exclusively by the driver and should never be accessed by the application. Device specific drivers define an object structure as a new type using the typedef keyword. Each index in a driver's configuration will contain a pointer to a driver object.


Driver Hardware Attributes

The hardware attributes, also commonly referred to as HWAttrs, are device specific settings that typically do not change during runtime operation of a driver. The hardware attributes also aid in abstracting the generic driver interface from the device specific hardware. Device specific drivers define a hardware attribute structure as a new type using the typedef keyword. Each index in a driver's configuration will contain a pointer to a hardware attribute structure.


Driver Function Table

The function pointer table is a structure simply containing pointers to functions. Each index in a driver's configuration will contain a pointer to a function pointer table. The TI-Driver's interface uses function pointers to abstract a generic driver from a device specific driver. Each device specific driver declares a default function pointer table which may be referenced by default in the driver's configuration.


NoRTOS Framework Module

The NoRTOS framework module is provided to enable use of drivers without an underlying operating system. The module provides interfaces used by drivers to perform delays, block execution, register interrupts and more.

© Copyright 1995-2020, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale