Data Fields
I2CLPF3_HWAttrs Struct Reference

I2CLPF3 Hardware attributes. More...

#include <I2CLPF3.h>

Data Fields

I2C_BASE_HWATTRS uint32_t swiPriority
 
PowerLPF3_Resource powerMngrId
 
uint8_t sdaPin
 
uint8_t sdaPinMux
 
uint8_t sclPin
 
uint8_t sclPinMux
 

Detailed Description

I2CLPF3 Hardware attributes.

The baseAddr and intNum fields define the base address and the interrupt number of the I2C peripheral. These values are passed to driverlib APIs and therefore must be populated by driverlib macro definitions. These macros are found in the header files:

The powerMngrId is the Power driver resource ID for the I2C peripheral. These macros are defined in the device specific Power include file.

intPriority is the I2C peripheral's interrupt priority, as defined by the TI-RTOS kernel. This value is passed unmodified to Hwi_create().

swiPriority is the priority of a TI-RTOS kernel Swi that the I2C driver creates to finalize I2C transfers. See the documentation for the ti.sysbios.knl.Swi module for a description of Swi priorities.

sdaPin and sclPin define the SDA and SCL pin mapping, respectively. These are typically defined with a macro in a header file, which maps to an IOID. For example, when using sysconfig, ti_drivers_config.h defines CONFIG_GPIO_I2C_0_SDA to be DIO 0.

sdaPinMux and sclPinMux are values drawn from the GPIO driver. They indicate the function for that specific DIO pin that select I2C mode.

A sample structure is shown below:

const I2CLPF3_HWAttrs I2CLPF3_hwAttrs[CONFIG_I2C_COUNT] = {
{
.baseAddr = I2C0_BASE,
.intNum = INT_I2C0_IRQ,
.intPriority = (~0),
.sclPin = CONFIG_GPIO_I2C_0_SCL,
.sdaPin = CONFIG_GPIO_I2C_0_SDA,
},
};

Field Documentation

§ swiPriority

I2C_BASE_HWATTRS uint32_t I2CLPF3_HWAttrs::swiPriority

§ powerMngrId

PowerLPF3_Resource I2CLPF3_HWAttrs::powerMngrId

§ sdaPin

uint8_t I2CLPF3_HWAttrs::sdaPin

§ sdaPinMux

uint8_t I2CLPF3_HWAttrs::sdaPinMux

§ sclPin

uint8_t I2CLPF3_HWAttrs::sclPin

§ sclPinMux

uint8_t I2CLPF3_HWAttrs::sclPinMux

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