TI-RTOS for SimpleLink Wireless MCUs  2.14.03.28
Data Fields
UARTTivaDMA_HWAttrs Struct Reference

UARTTivaDMA Hardware attributes. More...

#include <UARTTivaDMA.h>

Data Fields

unsigned int baseAddr
 
unsigned int intNum
 
unsigned int intPriority
 
uint32_t rxChannelIndex
 
uint32_t txChannelIndex
 

Detailed Description

UARTTivaDMA Hardware attributes.

The fields, with the exception of intPriority, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For TivaWare these definitions are found in:

intPriority is the UART peripheral's interrupt priority, as defined by the underlying OS. It is passed unmodified to the underlying OS's interrupt handler creation code, so you need to refer to the OS documentation for usage. For example, for SYS/BIOS applications, refer to the ti.sysbios.family.arm.m3.Hwi documentation for SYS/BIOS usage of interrupt priorities. If the driver uses the ti.drivers.ports interface instead of making OS calls directly, then the HwiP port handles the interrupt priority in an OS specific way. In the case of the SYS/BIOS port, intPriority is passed unmodified to Hwi_create().

A sample structure is shown below:

const UARTTivaDMA_HWAttrs uartTivaHWAttrs[] = {
{
.baseAddr = UART1_BASE,
.intNum = INT_UART1,
.intPriority = (~0),
.rxChannelIndex = UDMA_CH22_UART1RX,
.txChannelIndex = UDMA_CH23_UART1TX,
},
{
.baseAddr = UART3_BASE,
.intNum = INT_UART3
.intPriority = (~0),
.rxChannelIndex = UDMA_CH16_UART3RX,
.txChannelIndex = UDMA_CH17_UART3TX,
},
};

Field Documentation

unsigned int UARTTivaDMA_HWAttrs::baseAddr

UART Peripheral's base address

unsigned int UARTTivaDMA_HWAttrs::intNum

UART Peripheral's interrupt vector

unsigned int UARTTivaDMA_HWAttrs::intPriority

UART Peripheral's interrupt priority

uint32_t UARTTivaDMA_HWAttrs::rxChannelIndex

uDMA controlTable receive channel index plus peripheral map

uint32_t UARTTivaDMA_HWAttrs::txChannelIndex

uDMA controlTable transmit channel index plus peripheral map


The documentation for this struct was generated from the following file:
Copyright 2015, Texas Instruments Incorporated