TI-RTOS Drivers  tidrivers_full_2_20_00_08
Data Fields
I2CTiva_HWAttrs Struct Reference

I2CTiva Hardware attributes. More...

#include <I2CTiva.h>

Data Fields

unsigned int baseAddr
 
unsigned int intNum
 
unsigned int intPriority
 

Detailed Description

I2CTiva Hardware attributes.

The baseAddr and intNum fields are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For TivaWare these definitions are found in:

intPriority is the I2C peripheral's interrupt priority, as defined by the underlying OS. In the case of SYS/BIOS, intPriority is passed unmodified to Hwi_create().

A sample structure is shown below:

const I2CTiva_HWAttrs i2cTivaHWAttrs[] = {
{
.baseAddr = I2C1_BASE,
.intNum = INT_I2C1,
.intPriority = (~0)
},
{
.baseAddr = I2C3_BASE,
.intNum = INT_I2C3,
.intPriority = (~0)
},
};

Field Documentation

unsigned int I2CTiva_HWAttrs::baseAddr

I2C Peripheral's base address

unsigned int I2CTiva_HWAttrs::intNum

I2C Peripheral's interrupt vector

unsigned int I2CTiva_HWAttrs::intPriority

I2C Peripheral's interrupt priority


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