Data Fields
UARTCC26XX_HWAttrsV2 Struct Reference

UARTCC26XX Hardware attributes. More...

#include <UARTCC26XX.h>

Collaboration diagram for UARTCC26XX_HWAttrsV2:
Collaboration graph
[legend]

Data Fields

uint32_t baseAddr
 
uint32_t powerMngrId
 
int intNum
 
uint8_t intPriority
 UART Peripheral's interrupt priority. More...
 
uint32_t swiPriority
 SPI SWI priority. The higher the number, the higher the priority. The minimum is 0 and the maximum is 15 by default. The maximum can be reduced to save RAM by adding or modifying Swi.numPriorities in the kernel configuration file. More...
 
uint8_t txPin
 
uint8_t rxPin
 
uint8_t ctsPin
 
uint8_t rtsPin
 
unsigned char * ringBufPtr
 
size_t ringBufSize
 
UARTCC26XX_FifoThreshold txIntFifoThr
 
UARTCC26XX_FifoThreshold rxIntFifoThr
 
UARTCC26XX_ErrorCallback errorFxn
 

Detailed Description

UARTCC26XX Hardware attributes.

These fields, with the exception of intPriority, txIntFifoThr and rxIntFifoThr, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For CC26xxWare 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.dpl 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 UARTCC26XX_HWAttrsV2 uartCC26xxHWAttrs[] = {
{
.baseAddr = UART0_BASE,
.powerMngrId = PERIPH_UART0,
.intNum = INT_UART0,
.intPriority = ~0,
.swiPriority = 0,
.txPin = Board_UART_TX,
.rxPin = Board_UART_RX,
.ctsPin = PIN_UNASSIGNED,
.rtsPin = PIN_UNASSIGNED,
.ringBufPtr = uartCC26XXRingBuffer[0],
.ringBufSize = sizeof(uartCC26XXRingBuffer[0]),
}
};

The .ctsPin and .rtsPin must be assigned to enable flow control.

Field Documentation

§ baseAddr

uint32_t UARTCC26XX_HWAttrsV2::baseAddr

UART Peripheral's base address

§ powerMngrId

uint32_t UARTCC26XX_HWAttrsV2::powerMngrId

UART Peripheral's power manager ID

§ intNum

int UARTCC26XX_HWAttrsV2::intNum

UART Peripheral's interrupt vector

§ intPriority

uint8_t UARTCC26XX_HWAttrsV2::intPriority

UART Peripheral's interrupt priority.

The CC26xx uses three of the priority bits, meaning ~0 has the same effect as (7 << 5).

(7 << 5) will apply the lowest priority.

(1 << 5) will apply the highest priority.

Setting the priority to 0 is not supported by this driver.

HWI's with priority 0 ignore the HWI dispatcher to support zero-latency interrupts, thus invalidating the critical sections in this driver.

§ swiPriority

uint32_t UARTCC26XX_HWAttrsV2::swiPriority

SPI SWI priority. The higher the number, the higher the priority. The minimum is 0 and the maximum is 15 by default. The maximum can be reduced to save RAM by adding or modifying Swi.numPriorities in the kernel configuration file.

§ txPin

uint8_t UARTCC26XX_HWAttrsV2::txPin

UART TX pin

§ rxPin

uint8_t UARTCC26XX_HWAttrsV2::rxPin

UART RX pin

§ ctsPin

uint8_t UARTCC26XX_HWAttrsV2::ctsPin

UART CTS pin

§ rtsPin

uint8_t UARTCC26XX_HWAttrsV2::rtsPin

UART RTS pin

§ ringBufPtr

unsigned char* UARTCC26XX_HWAttrsV2::ringBufPtr

Pointer to an application ring buffer

§ ringBufSize

size_t UARTCC26XX_HWAttrsV2::ringBufSize

Size of ringBufPtr

§ txIntFifoThr

UARTCC26XX_FifoThreshold UARTCC26XX_HWAttrsV2::txIntFifoThr

UART TX interrupt FIFO threshold select

§ rxIntFifoThr

UARTCC26XX_FifoThreshold UARTCC26XX_HWAttrsV2::rxIntFifoThr

UART RX interrupt FIFO threshold select

§ errorFxn

UARTCC26XX_ErrorCallback UARTCC26XX_HWAttrsV2::errorFxn

Application error function to be called on receive errors


The documentation for this struct was generated from the following file:
© Copyright 1995-2019, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale