TI-RTOS Drivers  tidrivers_full_2_20_00_08
Data Structures | Typedefs | Enumerations | Variables
I2CMSP432.h File Reference

Detailed Description

I2C driver implementation for the EUSCI controller on MSP432.

============================================================================

This I2C driver implementation is designed to operate on a EUCSI controller in I2C mode. The I2CMSP432 header file should be included in an application as follows:

#include <ti/drivers/I2C.h>
#include <ti/drivers/I2CMSP432.h>

Refer to I2C.h for a complete description of APIs and usage.


#include <stdint.h>
#include <stdbool.h>
#include <ti/drivers/I2C.h>
#include <ti/drivers/ports/HwiP.h>
#include <ti/drivers/ports/SemaphoreP.h>
#include <ti/drivers/Power.h>
Include dependency graph for I2CMSP432.h:

Go to the source code of this file.

Data Structures

struct  I2CMSP432_HWAttrs
 I2CMSP432 Hardware attributes These fields, with the exception of intPriority, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For MSP430Ware these definitions are found in: More...
 
struct  I2CMSP432_Object
 I2CMSP432 Object. More...
 

Typedefs

typedef enum I2CMSP432_Mode I2CMSP432_Mode
 I2CMSP432 mode. More...
 
typedef struct I2CMSP432_HWAttrs I2CMSP432_HWAttrs
 I2CMSP432 Hardware attributes These fields, with the exception of intPriority, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For MSP430Ware these definitions are found in: More...
 
typedef struct I2CMSP432_Object I2CMSP432_Object
 I2CMSP432 Object. More...
 

Enumerations

enum  I2CMSP432_Mode {
  I2CMSP432_IDLE_MODE = 0,
  I2CMSP432_WRITE_MODE,
  I2CMSP432_READ_MODE,
  I2CMSP432_ERROR = 0xFF
}
 I2CMSP432 mode. More...
 

Variables

const I2C_FxnTable I2CMSP432_fxnTable
 

Typedef Documentation

I2CMSP432 mode.

This enum defines the state of the I2C driver's state-machine. Do not modify.

I2CMSP432 Hardware attributes These fields, with the exception of intPriority, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For MSP430Ware these definitions are found in:

  • i2c.h

intPriority is the I2C peripheral's interrupt priority. This driver uses the HwiP port interface, which handles the interrupt priority in the OS appropriate way. In the case of the SYS/BIOS implementation, intPriority is passed unmodified to Hwi_create().

A sample structure is shown below:

1 const I2CMSP432_HWAttrs i2cMSP432HWAttrs[] = {
2  {
3  .baseAddr = EUSCI_B0_BASE,
4  .intNum = INT_EUSCIB0,
5  .intPriority = (~0),
6  .clockSource = EUSCI_B_I2C_CLOCKSOURCE_SMCLK
7  }
8 };

I2CMSP432 Object.

The application must not access any member variables of this structure!

Enumeration Type Documentation

I2CMSP432 mode.

This enum defines the state of the I2C driver's state-machine. Do not modify.

Enumerator
I2CMSP432_IDLE_MODE 
I2CMSP432_WRITE_MODE 
I2CMSP432_READ_MODE 
I2CMSP432_ERROR 

Variable Documentation

const I2C_FxnTable I2CMSP432_fxnTable
Copyright 2016, Texas Instruments Incorporated