Data Fields
UARTCC32XX_HWAttrsV1 Struct Reference

UARTCC32XX Hardware attributes. More...

#include <UARTCC32XX.h>

Collaboration diagram for UARTCC32XX_HWAttrsV1:
Collaboration graph
[legend]

Data Fields

unsigned int baseAddr
 
unsigned int intNum
 
unsigned int intPriority
 
uint32_t flowControl
 
unsigned char * ringBufPtr
 
size_t ringBufSize
 
uint16_t rxPin
 
uint16_t txPin
 
uint16_t ctsPin
 
uint16_t rtsPin
 
UARTCC32XX_ErrorCallback errorFxn
 

Detailed Description

UARTCC32XX Hardware attributes.

The fields, baseAddr, intNum, and flowControl, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For CC32XXWare 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:

unsigned char uartCC32XXRingBuffer[2][32];
const UARTCC32XX_HWAttrsV1 uartCC32XXHWAttrs[] = {
{
.baseAddr = UARTA0_BASE,
.intNum = INT_UARTA0,
.intPriority = (~0),
.ringBufPtr = uartCC32XXRingBuffer[0],
.ringBufSize = sizeof(uartCC32XXRingBuffer[0]),
.errorFxn = NULL
},
{
.baseAddr = UARTA1_BASE,
.intNum = INT_UARTA1,
.intPriority = (~0),
.ringBufPtr = uartCC32XXRingBuffer[1],
.ringBufSize = sizeof(uartCC32XXRingBuffer[1]),
.errorFxn = NULL
},
};

Field Documentation

§ baseAddr

unsigned int UARTCC32XX_HWAttrsV1::baseAddr

UART Peripheral's base address

§ intNum

unsigned int UARTCC32XX_HWAttrsV1::intNum

UART Peripheral's interrupt vector

§ intPriority

unsigned int UARTCC32XX_HWAttrsV1::intPriority

UART Peripheral's interrupt priority

§ flowControl

uint32_t UARTCC32XX_HWAttrsV1::flowControl

Hardware flow control setting defined by driverlib

§ ringBufPtr

unsigned char* UARTCC32XX_HWAttrsV1::ringBufPtr

Pointer to an application ring buffer

§ ringBufSize

size_t UARTCC32XX_HWAttrsV1::ringBufSize

Size of ringBufPtr

§ rxPin

uint16_t UARTCC32XX_HWAttrsV1::rxPin

UART RX pin assignment

§ txPin

uint16_t UARTCC32XX_HWAttrsV1::txPin

UART TX pin assignment

§ ctsPin

uint16_t UARTCC32XX_HWAttrsV1::ctsPin

UART clear to send (CTS) pin assignment

§ rtsPin

uint16_t UARTCC32XX_HWAttrsV1::rtsPin

UART request to send (RTS) pin assignment

§ errorFxn

UARTCC32XX_ErrorCallback UARTCC32XX_HWAttrsV1::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