Data Fields
UARTMSP432E4_HWAttrs Struct Reference

UARTMSP432E4 Hardware attributes. More...

#include <UARTMSP432E4.h>

Collaboration diagram for UARTMSP432E4_HWAttrs:
Collaboration graph
[legend]

Data Fields

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

Detailed Description

UARTMSP432E4 Hardware attributes.

The baseAddr, intNum, and flowControl fields are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For MSP432E4 driverlib 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 uartMSP432E4RingBuffer[2][32];
const UARTMSP432E4_HWAttrs uartMSP432E4HWAttrs[] = {
{
.baseAddr = UART0_BASE,
.intNum = INT_UART0,
.intPriority = (~0),
.ringBufPtr = uartMSP432E4RingBuffer[0],
.ringBufSize = sizeof(uartMSP432E4RingBuffer[0]),
.errorFxn = NULL
},
{
.baseAddr = UART1_BASE,
.intNum = INT_UART1,
.intPriority = (~0),
.ringBufPtr = uartMSP432E4RingBuffer[1],
.ringBufSize = sizeof(uartMSP432E4RingBuffer[1]),
.errorFxn = NULL
}
};

Field Documentation

§ baseAddr

uint32_t UARTMSP432E4_HWAttrs::baseAddr

UART Peripheral's base address

§ intNum

uint32_t UARTMSP432E4_HWAttrs::intNum

UART Peripheral's interrupt vector

§ intPriority

uint32_t UARTMSP432E4_HWAttrs::intPriority

UART Peripheral's interrupt priority

§ flowControl

uint32_t UARTMSP432E4_HWAttrs::flowControl

Hardware flow control setting defined by driverlib

§ ringBufPtr

unsigned char* UARTMSP432E4_HWAttrs::ringBufPtr

Pointer to a application ring buffer

§ ringBufSize

size_t UARTMSP432E4_HWAttrs::ringBufSize

Size of ringBufPtr

§ rxPin

uint32_t UARTMSP432E4_HWAttrs::rxPin

UART RX pin assignment

§ txPin

uint32_t UARTMSP432E4_HWAttrs::txPin

UART TX pin assignment

§ ctsPin

uint32_t UARTMSP432E4_HWAttrs::ctsPin

UART clear to send (CTS) pin assignment

§ rtsPin

uint32_t UARTMSP432E4_HWAttrs::rtsPin

UART request to send (RTS) pin assignment

§ errorFxn

UARTMSP432E4_ErrorCallback UARTMSP432E4_HWAttrs::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