Kinetis Bootloader  2.0.0
Common bootloader for Kinetis devices
Inter-Integrated Circuit (IIC/I2C)

Data Structures

struct  i2c_master_config_t
 I2C master user config. More...
 
struct  i2c_slave_config_t
 I2C slave user config. More...
 
struct  i2c_master_transfer_t
 I2C master transfer structure. More...
 
struct  i2c_master_handle_t
 I2C master handle structure. More...
 
struct  i2c_slave_transfer_t
 I2C slave transfer structure. More...
 
struct  i2c_slave_handle_t
 I2C slave handle structure. More...
 

Typedefs

typedef void(* i2c_master_transfer_callback_t) (I2C_Type *base, i2c_master_handle_t *handle, status_t status, void *userData)
 I2C master transfer callback typedef.
 
typedef void(* i2c_slave_transfer_callback_t) (I2C_Type *base, i2c_slave_transfer_t *xfer, void *userData)
 I2C slave transfer callback typedef.
 

Enumerations

enum  _i2c_status {
  kStatus_I2C_Busy = MAKE_STATUS(kStatusGroup_I2C, 0),
  kStatus_I2C_Idle = MAKE_STATUS(kStatusGroup_I2C, 1),
  kStatus_I2C_Nak = MAKE_STATUS(kStatusGroup_I2C, 2),
  kStatus_I2C_ArbitrationLost = MAKE_STATUS(kStatusGroup_I2C, 3),
  kStatus_I2C_Timeout = MAKE_STATUS(kStatusGroup_I2C, 4)
}
 I2C status return codes. More...
 
enum  _i2c_flags {
  kI2C_ReceiveNakFlag = I2C_S_RXAK_MASK,
  kI2C_IntPendingFlag = I2C_S_IICIF_MASK,
  kI2C_TransferDirectionFlag = I2C_S_SRW_MASK,
  kI2C_RangeAddressMatchFlag = I2C_S_RAM_MASK,
  kI2C_ArbitrationLostFlag = I2C_S_ARBL_MASK,
  kI2C_BusBusyFlag = I2C_S_BUSY_MASK,
  kI2C_AddressMatchFlag = I2C_S_IAAS_MASK,
  kI2C_TransferCompleteFlag = I2C_S_TCF_MASK,
  kI2C_StopDetectFlag = I2C_FLT_STOPF_MASK << 8,
  kI2C_StartDetectFlag = I2C_FLT_STARTF_MASK << 8
}
 I2C peripheral flags. More...
 
enum  _i2c_interrupt_enable {
  kI2C_GlobalInterruptEnable = I2C_C1_IICIE_MASK,
  kI2C_StopDetectInterruptEnable = I2C_FLT_STOPIE_MASK,
  kI2C_StartStopDetectInterruptEnable = I2C_FLT_SSIE_MASK
}
 I2C feature interrupt source. More...
 
enum  i2c_direction_t {
  kI2C_Write = 0x0U,
  kI2C_Read = 0x1U
}
 Direction of master and slave transfers. More...
 
enum  i2c_slave_address_mode_t {
  kI2C_Address7bit = 0x0U,
  kI2C_RangeMatch = 0X2U
}
 Addressing mode. More...
 
enum  _i2c_master_transfer_flags {
  kI2C_TransferDefaultFlag = 0x0U,
  kI2C_TransferNoStartFlag = 0x1U,
  kI2C_TransferRepeatedStartFlag = 0x2U,
  kI2C_TransferNoStopFlag = 0x4U
}
 I2C transfer control flag. More...
 
enum  i2c_slave_transfer_event_t {
  kI2C_SlaveAddressMatchEvent = 0x01U,
  kI2C_SlaveTransmitEvent = 0x02U,
  kI2C_SlaveReceiveEvent = 0x04U,
  kI2C_SlaveTransmitAckEvent = 0x08U,
  kI2C_SlaveRepeatedStartEvent = 0x10U,
  kI2C_SlaveCompletionEvent = 0x20U,
  kI2C_SlaveAllEvents
}
 Set of events sent to the callback for nonblocking slave transfers. More...
 

Initialization and deinitialization

void I2C_MasterInit (I2C_Type *base, const i2c_master_config_t *masterConfig, uint32_t srcClock_Hz)
 Initialize the I2C peripheral, call this API to ungate the i2c clock and configure the I2C with master configuration. More...
 
void I2C_SlaveInit (I2C_Type *base, const i2c_slave_config_t *slaveConfig)
 Initialize the I2C peripheral, call this API to ungate the i2c clock and initializes the I2C with slave configuration. More...
 
void I2C_MasterDeinit (I2C_Type *base)
 De-initialize the I2C master peripheral, call thi API will gate the i2c clock, so the I2C master module can not work unless call I2C_MasterInit. More...
 
void I2C_SlaveDeinit (I2C_Type *base)
 De-initialize the I2C slave peripheral, call thi API will gate the i2c clock, so the I2C slave module can not work unless call I2C_SlaveInit to enable the clock. More...
 
void I2C_MasterGetDefaultConfig (i2c_master_config_t *masterConfig)
 Set the I2C master configuration structure to default values. More...
 
void I2C_SlaveGetDefaultConfig (i2c_slave_config_t *slaveConfig)
 Set the I2C slave configuration structure to default values. More...
 
static void I2C_Enable (I2C_Type *base, bool enable)
 Enable or disables the I2C peripheral operation. More...
 

Status

uint32_t I2C_MasterGetStatusFlags (I2C_Type *base)
 Gets the I2C status flags. More...
 
static uint32_t I2C_SlaveGetStatusFlags (I2C_Type *base)
 Gets the I2C status flags. More...
 
static void I2C_MasterClearStatusFlags (I2C_Type *base, uint32_t statusMask)
 Clears the I2C status flag state. More...
 
static void I2C_SlaveClearStatusFlags (I2C_Type *base, uint32_t statusMask)
 Clears the I2C status flag state. More...
 

Interrupts

void I2C_EnableInterrupts (I2C_Type *base, uint32_t mask)
 Enable I2C interrupt requests. More...
 
void I2C_DisableInterrupts (I2C_Type *base, uint32_t mask)
 Disable I2C interrupt requests. More...
 

DMA Control

static void I2C_EnableDMA (I2C_Type *base, bool enable)
 Enables/disables the I2C DMA interrupt. More...
 
static uint32_t I2C_GetDataRegAddr (I2C_Type *base)
 Get I2C tx/rx data register address This API is used to provide transfer address for I2C DMA transfer configuration. More...
 

Bus Operations

void I2C_MasterSetBaudRate (I2C_Type *base, uint32_t baudRate_Bps, uint32_t srcClock_Hz)
 Sets the I2C master transfer baudrate. More...
 
status_t I2C_MasterStart (I2C_Type *base, uint8_t address, i2c_direction_t direction)
 Sends a START on the I2C bus. More...
 
status_t I2C_MasterStop (I2C_Type *base)
 Sends a STOP signal on the I2C bus. More...
 
status_t I2C_MasterRepeatedStart (I2C_Type *base, uint8_t address, i2c_direction_t direction)
 Sends a REPEATED START on the I2C bus. More...
 
status_t I2C_MasterWriteBlocking (I2C_Type *base, const uint8_t *txBuff, size_t txSize)
 Performs a polling send transaction on the I2C bus without a STOP signal. More...
 
status_t I2C_MasterReadBlocking (I2C_Type *base, uint8_t *rxBuff, size_t rxSize)
 Performs a polling receive transaction on the I2C bus with a STOP signal. More...
 
status_t I2C_SlaveWriteBlocking (I2C_Type *base, const uint8_t *txBuff, size_t txSize)
 Performs a polling send transaction on the I2C bus. More...
 
void I2C_SlaveReadBlocking (I2C_Type *base, uint8_t *rxBuff, size_t rxSize)
 Performs a polling receive transaction on the I2C bus. More...
 
status_t I2C_MasterTransferBlocking (I2C_Type *base, i2c_master_transfer_t *xfer)
 Performs a master polling transfer on the I2C bus. More...
 

Transactional

void I2C_MasterTransferCreateHandle (I2C_Type *base, i2c_master_handle_t *handle, i2c_master_transfer_callback_t callback, void *userData)
 Init the I2C handle which is used in transactional functions. More...
 
status_t I2C_MasterTransferNonBlocking (I2C_Type *base, i2c_master_handle_t *handle, i2c_master_transfer_t *xfer)
 Performs a master interrupt non-blocking transfer on the I2C bus. More...
 
status_t I2C_MasterTransferGetCount (I2C_Type *base, i2c_master_handle_t *handle, size_t *count)
 Get master transfer status during a interrupt non-blocking transfer. More...
 
void I2C_MasterTransferAbort (I2C_Type *base, i2c_master_handle_t *handle)
 Abort a interrupt non-blocking transfer in a early time. More...
 
void I2C_MasterTransferHandleIRQ (I2C_Type *base, void *i2cHandle)
 Master interrupt handler. More...
 
void I2C_SlaveTransferCreateHandle (I2C_Type *base, i2c_slave_handle_t *handle, i2c_slave_transfer_callback_t callback, void *userData)
 Init the I2C handle which is used in transcational functions. More...
 
status_t I2C_SlaveTransferNonBlocking (I2C_Type *base, i2c_slave_handle_t *handle, uint32_t eventMask)
 Start accepting slave transfers. More...
 
void I2C_SlaveTransferAbort (I2C_Type *base, i2c_slave_handle_t *handle)
 Abort slave transfer. More...
 
status_t I2C_SlaveTransferGetCount (I2C_Type *base, i2c_slave_handle_t *handle, size_t *count)
 Get slave transfer remaining bytes during a interrupt non-blocking transfer. More...
 
void I2C_SlaveTransferHandleIRQ (I2C_Type *base, void *i2cHandle)
 Slave interrupt handler. More...
 

Usage Information

The KSDK provides a peripheral driver for the Inter-Integrated Circuit (I2C) module of Kinetis devices.

Overview

The I2C driver includes functional APIs and transactional APIs.

Functional APIs are feature/property target low level APIs. Functional APIs can be used for the I2C master/slave initialization/configuration/operation for optimization/customization purpose. Using the functional APIs requires the knowledge of the I2C master peripheral and how to organize functional APIs to meet the application requirements. The I2C functional operation groups provide the functional APIs set.

Transactional APIs are transaction target high level APIs. The transactional APIs can be used to enable the peripheral quickly and also in the application if the code size and performance of transactional APIs satisfy the requirements. If the code size and performance are critical requirements, see the transactional API implementation and write custom code using the functional APIs or accessing the hardware registers.

Transactional APIs support asynchronous transfer. This means that the functions I2C_MasterTransferNonBlocking() set up the interrupt non-blocking transfer. When the transfer completes, the upper layer is notified through a callback function with the status.

Function groups

Initialization and deinitialization

The function I2C_MasterInit()/I2C_SlaveInit() initializes the I2C master/slave with a specified configurations. The function I2C_MasterGetDefaultConfig()/I2C_SlaveGetDefaultConfig() gets the default configurations.

Status

Provides functions to get and clear the I2C master/slave status.

Interrupt

Provides functions to enable/disable I2C interrupts.

DMA Control

Provides functions for I2C to enable/disable generate the DMA request.

Bus Operations

Provides functions to generate bus control signals, start/re-start/stop, write/read data. Additionally, provides functions to set baud rate.

Transactional

Provides functions to transfer data through interrupt or dma.

Typical use case

Master Operation in functional method

i2c_master_config_t masterConfig;
uint8_t status;
status_t result = kStatus_Success;
uint8_t txBuff[BUFFER_SIZE];
/* Get default configuration for master. */
/* Init I2C master. */
I2C_MasterInit(EXAMPLE_I2C_MASTER_BASEADDR, &masterConfig, I2C_MASTER_CLK);
/* Send start and slave address. */
I2C_MasterStart(EXAMPLE_I2C_MASTER_BASEADDR, 7-bit slave address, kI2C_Write/kI2C_Read);
/* Wait address sent out. */
while(!((status = I2C_GetStatusFlag(EXAMPLE_I2C_MASTER_BASEADDR)) & kI2C_IntPendingFlag))
{
}
if(status & kI2C_ReceiveNakFlag)
{
}
result = I2C_MasterWriteBlocking(EXAMPLE_I2C_MASTER_BASEADDR, txBuff, BUFFER_SIZE);
if(result)
{
/* If error occours, send STOP. */
I2C_MasterStop(EXAMPLE_I2C_MASTER_BASEADDR, kI2CStop);
return result;
}
while(!(I2C_GetStatusFlag(EXAMPLE_I2C_MASTER_BASEADDR) & kI2C_IntPendingFlag))
{
}
/* Wait all data sent out, send STOP. */
I2C_MasterStop(EXAMPLE_I2C_MASTER_BASEADDR, kI2CStop);

Master Operation in interrupt transactional method

i2c_master_handle_t g_m_handle;
volatile bool g_MasterCompletionFlag = false;
i2c_master_config_t masterConfig;
uint8_t status;
status_t result = kStatus_Success;
uint8_t txBuff[BUFFER_SIZE];
static void i2c_master_callback(I2C_Type *base, i2c_master_handle_t *handle, status_t status, void *userData)
{
/* Signal transfer success when received success status. */
if (status == kStatus_Success)
{
g_MasterCompletionFlag = true;
}
}
/* Get default configuration for master. */
/* Init I2C master. */
I2C_MasterInit(EXAMPLE_I2C_MASTER_BASEADDR, &masterConfig, I2C_MASTER_CLK);
masterXfer.slaveAddress = I2C_MASTER_SLAVE_ADDR_7BIT;
masterXfer.direction = kI2C_Write;
masterXfer.subaddress = NULL;
masterXfer.subaddressSize = 0;
masterXfer.data = txBuff;
masterXfer.dataSize = BUFFER_SIZE;
I2C_MasterTransferCreateHandle(EXAMPLE_I2C_MASTER_BASEADDR, &g_m_handle, i2c_master_callback, NULL);
I2C_MasterTransferNonBlocking(EXAMPLE_I2C_MASTER_BASEADDR, &g_m_handle, &masterXfer);
/* Wait for transfer completed. */
while (!g_MasterCompletionFlag)
{
}
g_MasterCompletionFlag = false;

Master Operation in DMA transactional method

i2c_master_dma_handle_t g_m_dma_handle;
dma_handle_t dmaHandle;
volatile bool g_MasterCompletionFlag = false;
i2c_master_config_t masterConfig;
uint8_t txBuff[BUFFER_SIZE];
static void i2c_master_callback(I2C_Type *base, i2c_master_dma_handle_t *handle, status_t status, void *userData)
{
/* Signal transfer success when received success status. */
if (status == kStatus_Success)
{
g_MasterCompletionFlag = true;
}
}
/* Get default configuration for master. */
/* Init I2C master. */
I2C_MasterInit(EXAMPLE_I2C_MASTER_BASEADDR, &masterConfig, I2C_MASTER_CLK);
masterXfer.slaveAddress = I2C_MASTER_SLAVE_ADDR_7BIT;
masterXfer.direction = kI2C_Write;
masterXfer.subaddress = NULL;
masterXfer.subaddressSize = 0;
masterXfer.data = txBuff;
masterXfer.dataSize = BUFFER_SIZE;
DMAMGR_RequestChannel((dma_request_source_t)DMA_REQUEST_SRC, 0, &dmaHandle);
I2C_MasterTransferCreateHandleDMA(EXAMPLE_I2C_MASTER_BASEADDR, &g_m_dma_handle, i2c_master_callback, NULL, &dmaHandle);
I2C_MasterTransferDMA(EXAMPLE_I2C_MASTER_BASEADDR, &g_m_dma_handle, &masterXfer);
/* Wait for transfer completed. */
while (!g_MasterCompletionFlag)
{
}
g_MasterCompletionFlag = false;

Slave Operation in functional method

i2c_slave_config_t slaveConfig;
uint8_t status;
status_t result = kStatus_Success;
I2C_SlaveGetDefaultConfig(&slaveConfig); /*default configuration 7-bit addressing mode*/
slaveConfig.slaveAddr = 7-bit address
I2C_SlaveInit(EXAMPLE_I2C_SLAVE_BASEADDR, &slaveConfig);
/* Wait address match. */
while(!((status = I2C_GetStatusFlag(EXAMPLE_I2C_SLAVE_BASEADDR)) & kI2C_AddressMatchFlag))
{
}
/* Slave transmit, master reading from slave. */
{
result = I2C_SlaveWriteBlocking(EXAMPLE_I2C_SLAVE_BASEADDR);
}
else
{
I2C_SlaveReadBlocking(EXAMPLE_I2C_SLAVE_BASEADDR);
}
return result;

Slave Operation in interrupt transactional method

i2c_slave_config_t slaveConfig;
i2c_slave_handle_t g_s_handle;
volatile bool g_SlaveCompletionFlag = false;
static void i2c_slave_callback(I2C_Type *base, i2c_slave_transfer_t *xfer, void *userData)
{
switch (xfer->event)
{
/* Transmit request */
/* Update information for transmit process */
xfer->data = g_slave_buff;
xfer->dataSize = I2C_DATA_LENGTH;
break;
/* Receive request */
/* Update information for received process */
xfer->data = g_slave_buff;
xfer->dataSize = I2C_DATA_LENGTH;
break;
/* Transfer done */
g_SlaveCompletionFlag = true;
break;
default:
g_SlaveCompletionFlag = true;
break;
}
}
I2C_SlaveGetDefaultConfig(&slaveConfig); /*default configuration 7-bit addressing mode*/
slaveConfig.slaveAddr = 7-bit address
I2C_SlaveInit(EXAMPLE_I2C_SLAVE_BASEADDR, &slaveConfig);
I2C_SlaveTransferCreateHandle(EXAMPLE_I2C_SLAVE_BASEADDR, &g_s_handle, i2c_slave_callback, NULL);
I2C_SlaveTransferNonBlocking(EXAMPLE_I2C_SLAVE_BASEADDR, &g_s_handle, kI2C_SlaveCompletionEvent);
/* Wait for transfer completed. */
while (!g_SlaveCompletionFlag)
{
}
g_SlaveCompletionFlag = false;

Data Structure Documentation

struct i2c_master_config_t

I2C master user config.

Data Fields
uint32_t baudRate_Bps

Baud rate configuration of I2C peripheral.

bool enableHighDrive

Controls the drive capability of the I2C pads.

bool enableMaster

Enables the I2C periperhal at init time.

bool enableStopHold

Controls the stop hold enable.

uint8_t glitchFilterWidth

Controls the width of the glitch.

struct i2c_slave_config_t

I2C slave user config.

Data Fields
i2c_slave_address_mode_t addressingMode

Addressing mode configuration of i2c_slave_address_mode_config_t.

bool enableBaudRateCtl

Enables/disables independent slave baudrate on SCL in very fast I2C modes.

bool enableGeneralCall

Enable general call addressing mode.

bool enableHighDrive

Controls the drive capability of the I2C pads.

bool enableSlave

Enables the I2C periperhal at init time.

bool enableWakeUp

Enables/disables waking up MCU from low power mode.

uint16_t slaveAddress

Slave address configuration.

uint16_t upperAddress

Maximum boundary slave address used in range matching mode.

struct i2c_master_transfer_t

I2C master transfer structure.

Data Fields
uint8_t *volatile data

Transfer buffer.

volatile size_t dataSize

Transfer size.

i2c_direction_t direction

Transfer direction, read or write.

uint32_t flags

Transfer flag which controls the transfer.

uint8_t slaveAddress

7-bit slave address.

uint32_t subaddress

Subaddress. Transferred MSB first.

uint8_t subaddressSize

Size of command buffer.

struct _i2c_master_handle

I2C master handle structure.

I2C master handle typedef.

+ Collaboration diagram for i2c_master_handle_t:
Data Fields
i2c_master_transfer_callback_t completionCallback

Callback function called when transfer finished.

uint8_t state

Transfer state maintained during transfer.

i2c_master_transfer_t transfer

I2C master transfer copy.

size_t transferSize

Total bytes to be transferred.

void * userData

Callback parameter passed to callback function.

struct i2c_slave_transfer_t

I2C slave transfer structure.

Data Fields
status_t completionStatus

Success or error code describing how the transfer completed. Only applies for kI2C_SlaveCompletionEvent.

uint8_t *volatile data

Transfer buffer.

volatile size_t dataSize

Transfer size.

i2c_slave_transfer_event_t event

Reason the callback is being invoked.

size_t transferredCount

Number of bytes actually transferred since start or last repeated start.

struct _i2c_slave_handle

I2C slave handle structure.

I2C slave handle typedef.

+ Collaboration diagram for i2c_slave_handle_t:
Data Fields
i2c_slave_transfer_callback_t callback

Callback function called at transfer event.

uint32_t eventMask

Mask of enabled events.

bool isBusy

Whether transfer is busy.

i2c_slave_transfer_t transfer

I2C slave transfer copy.

void * userData

Callback parameter passed to callback.

Enumeration Type Documentation

enum _i2c_flags

I2C peripheral flags.

The following status register flags can be cleared:

Note
These enums are meant to be OR'd together to form a bit mask.
Enumerator
kI2C_ReceiveNakFlag 

I2C receive nak flag.

kI2C_IntPendingFlag 

I2C interrupt pending flag.

kI2C_TransferDirectionFlag 

I2C transfer direction flag.

kI2C_RangeAddressMatchFlag 

I2C range address match flag.

kI2C_ArbitrationLostFlag 

I2C arbitration lost flag.

kI2C_BusBusyFlag 

I2C bus busy flag.

kI2C_AddressMatchFlag 

I2C address match flag.

kI2C_TransferCompleteFlag 

I2C transfer complete flag.

kI2C_StopDetectFlag 

I2C stop detect flag.

kI2C_StartDetectFlag 

I2C start detect flag.

I2C feature interrupt source.

Enumerator
kI2C_GlobalInterruptEnable 

I2C global interrupt.

kI2C_StopDetectInterruptEnable 

I2C stop detect interrupt.

kI2C_StartStopDetectInterruptEnable 

I2C start&stop detect interrupt.

I2C transfer control flag.

Enumerator
kI2C_TransferDefaultFlag 

Transfer starts with a start signal, stops with a stop signal.

kI2C_TransferNoStartFlag 

Transfer starts without a start signal.

kI2C_TransferRepeatedStartFlag 

Transfer starts with a repeated start signal.

kI2C_TransferNoStopFlag 

Transfer ends without a stop signal.

I2C status return codes.

Enumerator
kStatus_I2C_Busy 

I2C is busy with current transfer.

kStatus_I2C_Idle 

Bus is Idle.

kStatus_I2C_Nak 

NAK received during transfer.

kStatus_I2C_ArbitrationLost 

Arbitration lost during transfer.

kStatus_I2C_Timeout 

Wait event timeout.

Direction of master and slave transfers.

Enumerator
kI2C_Write 

Master transmit to slave.

kI2C_Read 

Master receive from slave.

Addressing mode.

Enumerator
kI2C_Address7bit 

7-bit addressing mode.

kI2C_RangeMatch 

Range address match addressing mode.

Set of events sent to the callback for nonblocking slave transfers.

These event enums are used for two related purposes. First, a bit mask created by OR'ing together events is passed to I2C_SlaveTransferNonBlocking() in order to specify which events to enable. Then, when the slave callback is invoked, it is passed the current event through its transfer parameter.

Note
These enums are meant to be OR'd together to form a bit mask of events.
Enumerator
kI2C_SlaveAddressMatchEvent 

Received the slave address after a start or repeated start.

kI2C_SlaveTransmitEvent 

Callback is requested to provide data to transmit (slave-transmitter role).

kI2C_SlaveReceiveEvent 

Callback is requested to provide a buffer in which to place received data (slave-receiver role).

kI2C_SlaveTransmitAckEvent 

Callback needs to either transmit an ack or nack.

kI2C_SlaveRepeatedStartEvent 

A repeated start was detected.

kI2C_SlaveCompletionEvent 

A stop was detected or finished transfer, completing the transfer.

kI2C_SlaveAllEvents 

Bit mask of all available events.

Function Documentation

void I2C_DisableInterrupts ( I2C_Type *  base,
uint32_t  mask 
)

Disable I2C interrupt requests.

Parameters
baseI2C base pointer
maskinterrupt source The parameter can be combination of the following source if defined:
  • kI2C_GlobalInterruptEnable
  • kI2C_StopDetectInterruptEnable/kI2C_StartDetectInterruptEnable
  • kI2C_SdaTimeoutInterruptEnable
static void I2C_Enable ( I2C_Type *  base,
bool  enable 
)
inlinestatic

Enable or disables the I2C peripheral operation.

Parameters
baseI2C base pointer
enablepass true to enable module, false to disable module
static void I2C_EnableDMA ( I2C_Type *  base,
bool  enable 
)
inlinestatic

Enables/disables the I2C DMA interrupt.

Parameters
baseI2C base pointer
enabletrue for enable, false for diable
void I2C_EnableInterrupts ( I2C_Type *  base,
uint32_t  mask 
)

Enable I2C interrupt requests.

Parameters
baseI2C base pointer
maskinterrupt source The parameter can be combination of the following source if defined:
  • kI2C_GlobalInterruptEnable
  • kI2C_StopDetectInterruptEnable/kI2C_StartDetectInterruptEnable
  • kI2C_SdaTimeoutInterruptEnable
static uint32_t I2C_GetDataRegAddr ( I2C_Type *  base)
inlinestatic

Get I2C tx/rx data register address This API is used to provide transfer address for I2C DMA transfer configuration.

Parameters
baseI2C base pointer
Returns
data register address
static void I2C_MasterClearStatusFlags ( I2C_Type *  base,
uint32_t  statusMask 
)
inlinestatic

Clears the I2C status flag state.

The following status register flags can be cleared: kI2C_ArbitrationLostFlag and kI2C_IntPendingFlag

Parameters
baseI2C base pointer
statusMaskThe status flag mask, defined in type i2c_status_flag_t. The parameter could be any combination of the following values:
  • kI2C_StartDetectFlag (if available)
  • kI2C_StopDetectFlag (if available)
  • kI2C_ArbitrationLostFlag
  • kI2C_IntPendingFlagFlag
void I2C_MasterDeinit ( I2C_Type *  base)

De-initialize the I2C master peripheral, call thi API will gate the i2c clock, so the I2C master module can not work unless call I2C_MasterInit.

Parameters
baseI2C base pointer
void I2C_MasterGetDefaultConfig ( i2c_master_config_t masterConfig)

Set the I2C master configuration structure to default values.

The purpose of this API is to get the config structure initialized for use in I2C_MasterConfigure(). User may use the initialized structure unchanged in I2C_MasterConfigure(), or modify some fields of the structure before calling I2C_MasterConfigure(). Example:

1 i2c_master_config_t config;
2 I2C_MasterGetDefaultConfig(&config);
Parameters
masterConfigPointer to the master config structure.
uint32_t I2C_MasterGetStatusFlags ( I2C_Type *  base)

Gets the I2C status flags.

Parameters
baseI2C base pointer
Returns
status flag, use status flag to AND _i2c_flags could get the related status.
void I2C_MasterInit ( I2C_Type *  base,
const i2c_master_config_t masterConfig,
uint32_t  srcClock_Hz 
)

Initialize the I2C peripheral, call this API to ungate the i2c clock and configure the I2C with master configuration.

Note
This API should be called at the beginning of the application to use the i2c driver, or any operation to the i2c module could cause hard fault because clock is not enabled. The configuration structure can be filled by user from scratch, or be set with default values by I2C_MasterGetDefaultConfig(). After calling this API, the master is ready to transfer. Example:
1 i2c_master_config_t config = {
2 .enableMaster = true,
3 .enableStopHold = false,
4 .highDrive = false,
5 .baudRate_Bps = 100000,
6 .glitchFilterWidth = 0
7 };
8 I2C_MasterInit(I2C0, &config, 12000000U);
Parameters
baseI2C base pointer
masterConfigpointer to master config structure
srcClock_HzI2C pheripharal clock frequency in HZ
status_t I2C_MasterReadBlocking ( I2C_Type *  base,
uint8_t *  rxBuff,
size_t  rxSize 
)

Performs a polling receive transaction on the I2C bus with a STOP signal.

Note
The I2C_MasterReadBlocking function will STOP the bus before the read of the final byte. Without stopping the bus prior to the final read, the bus will issue another read, resulting in garbage data being read into the data register.
Parameters
baseI2C peripheral base pointer.
rxBuffThe pointer to the data to store the received data.
rxSizeThe length in bytes of the data to be received.
Return values
kStatus_SuccessSucessully complete the data transmission.
kStatus_I2C_TimeoutSend stop signal failed, timeout.
status_t I2C_MasterRepeatedStart ( I2C_Type *  base,
uint8_t  address,
i2c_direction_t  direction 
)

Sends a REPEATED START on the I2C bus.

Parameters
baseI2C peripheral base pointer
address7-bit slave device address.
directionMaster transfer directions(transmit/receive).
Return values
kStatus_SuccessSucessully send the start signal.
kStatus_I2C_BusyCurrent bus is busy but not occupied by current i2c master.
void I2C_MasterSetBaudRate ( I2C_Type *  base,
uint32_t  baudRate_Bps,
uint32_t  srcClock_Hz 
)

Sets the I2C master transfer baudrate.

Parameters
baseI2C base pointer
baudRate_Bpsthe baud rate value in bps
srcClock_HzSource clock
status_t I2C_MasterStart ( I2C_Type *  base,
uint8_t  address,
i2c_direction_t  direction 
)

Sends a START on the I2C bus.

This function is used to initiate a new master mode transfer by sending the START signal. The slave address will be sent following the I2C START signal.

Parameters
baseI2C peripheral base pointer
address7-bit slave device address.
directionMaster transfer directions(transmit/receive).
Return values
kStatus_SuccessSucessully send the start signal.
kStatus_I2C_BusyCurrent bus is busy.
status_t I2C_MasterStop ( I2C_Type *  base)

Sends a STOP signal on the I2C bus.

Return values
kStatus_SuccessSucessully send the stop signal.
kStatus_I2C_TimeoutSend stop signal failed, timeout.
void I2C_MasterTransferAbort ( I2C_Type *  base,
i2c_master_handle_t *  handle 
)

Abort a interrupt non-blocking transfer in a early time.

Note
This API could be called at any time when interrupt non-blocking transfer initiates to abort the transfer in a early time.
Parameters
baseI2C base pointer.
handlepointer to i2c_master_handle_t structure which stores the transfer state
status_t I2C_MasterTransferBlocking ( I2C_Type *  base,
i2c_master_transfer_t xfer 
)

Performs a master polling transfer on the I2C bus.

Note
Calling the API will not return until the transfer succeeds or fails due to arbitration lost or receiving a NAK.
Parameters
baseI2C peripheral base address.
xferPointer to the transfer structure.
Return values
kStatus_SuccessSucessully complete the data transmission.
kStatus_I2C_BusyPrevious transmission still not finished.
kStatus_I2C_TimeoutTransfer error, wait signal timeout.
kStatus_I2C_ArbitrationLostTransfer error, arbitration lost.
kStataus_I2C_NakTransfer error, receive Nak during transfer.
void I2C_MasterTransferCreateHandle ( I2C_Type *  base,
i2c_master_handle_t *  handle,
i2c_master_transfer_callback_t  callback,
void *  userData 
)

Init the I2C handle which is used in transactional functions.

Parameters
baseI2C base pointer.
handlepointer to i2c_master_handle_t structure to store the transfer state.
callbackpointer to user callback function.
userDatauser param passed to the callback function.
status_t I2C_MasterTransferGetCount ( I2C_Type *  base,
i2c_master_handle_t *  handle,
size_t *  count 
)

Get master transfer status during a interrupt non-blocking transfer.

Parameters
baseI2C base pointer.
handlepointer to i2c_master_handle_t structure which stores the transfer state.
countNumber of bytes transferred so far by the non-blocking transaction.
Return values
kStatus_InvalidArgumentcount is Invalid.
kStatus_SuccessSuccessfully return the count.
void I2C_MasterTransferHandleIRQ ( I2C_Type *  base,
void *  i2cHandle 
)

Master interrupt handler.

Parameters
baseI2C base pointer.
i2cHandlepointer to i2c_master_handle_t structure.
status_t I2C_MasterTransferNonBlocking ( I2C_Type *  base,
i2c_master_handle_t *  handle,
i2c_master_transfer_t xfer 
)

Performs a master interrupt non-blocking transfer on the I2C bus.

Note
Calling the API will return immediately after transfer initiates, user needs to call I2C_MasterGetTransferCount to poll the transfer status to check whether the transfer is finished, if the return status is not kStatus_I2C_Busy, the transfer is finished.
Parameters
baseI2C base pointer.
handlepointer to i2c_master_handle_t structure which stores the transfer state.
xferpointer to i2c_master_transfer_t structure.
Return values
kStatus_SuccessSucessully start the data transmission.
kStatus_I2C_BusyPrevious transmission still not finished.
kStatus_I2C_TimeoutTransfer error, wait signal timeout.
status_t I2C_MasterWriteBlocking ( I2C_Type *  base,
const uint8_t *  txBuff,
size_t  txSize 
)

Performs a polling send transaction on the I2C bus without a STOP signal.

Parameters
baseThe I2C peripheral base pointer.
txBuffThe pointer to the data to be transferred.
txSizeThe length in bytes of the data to be transferred.
Return values
kStatus_SuccessSucessully complete the data transmission.
kStatus_I2C_ArbitrationLostTransfer error, arbitration lost.
kStataus_I2C_NakTransfer error, receive Nak during transfer.
static void I2C_SlaveClearStatusFlags ( I2C_Type *  base,
uint32_t  statusMask 
)
inlinestatic

Clears the I2C status flag state.

The following status register flags can be cleared: kI2C_ArbitrationLostFlag and kI2C_IntPendingFlag

Parameters
baseI2C base pointer
statusMaskThe status flag mask, defined in type i2c_status_flag_t. The parameter could be any combination of the following values:
  • kI2C_StartDetectFlag (if available)
  • kI2C_StopDetectFlag (if available)
  • kI2C_ArbitrationLostFlag
  • kI2C_IntPendingFlagFlag
void I2C_SlaveDeinit ( I2C_Type *  base)

De-initialize the I2C slave peripheral, call thi API will gate the i2c clock, so the I2C slave module can not work unless call I2C_SlaveInit to enable the clock.

Parameters
baseI2C base pointer
void I2C_SlaveGetDefaultConfig ( i2c_slave_config_t slaveConfig)

Set the I2C slave configuration structure to default values.

The purpose of this API is to get the config structure initialized for use in I2C_SlaveConfigure(). User needs to modify some fields of the structure before calling I2C_SlaveConfigure(). Example:

1 i2c_slave_config_t config;
2 I2C_SlaveGetDefaultConfig(&config);
Parameters
slaveConfigPointer to the slave config structure.
static uint32_t I2C_SlaveGetStatusFlags ( I2C_Type *  base)
inlinestatic

Gets the I2C status flags.

Parameters
baseI2C base pointer
Returns
status flag, use status flag to AND _i2c_flags could get the related status.
void I2C_SlaveInit ( I2C_Type *  base,
const i2c_slave_config_t slaveConfig 
)

Initialize the I2C peripheral, call this API to ungate the i2c clock and initializes the I2C with slave configuration.

Note
This API should be called at the beginning of the application to use the i2c driver, or any operation to the i2c module could cause hard fault because clock is not enabled. The configuration structure could partly be set with default values by I2C_SlaveGetDefaultConfig(), or can be filled by user from scratch. Example
1 i2c_slave_config_t config = {
2 .enableSlave = true,
3 .enableGeneralCall = false,
4 .addressingMode = kI2C_Address7bit,
5 .slaveAddress = 0x1DU,
6 .enableWakeUp = false,
7 .enablehighDrive = false,
8 .enableBaudRateCtl = false
9 };
10 I2C_SlaveInit(I2C0, &config);
Parameters
baseI2C base pointer
slaveConfigpointer to slave config structure
void I2C_SlaveReadBlocking ( I2C_Type *  base,
uint8_t *  rxBuff,
size_t  rxSize 
)

Performs a polling receive transaction on the I2C bus.

Parameters
baseI2C peripheral base pointer.
rxBuffThe pointer to the data to store the received data.
rxSizeThe length in bytes of the data to be received.
void I2C_SlaveTransferAbort ( I2C_Type *  base,
i2c_slave_handle_t *  handle 
)

Abort slave transfer.

Note
This API could be called at any time to stop slave for handling the bus events.
Parameters
baseI2C base pointer.
handlepointer to i2c_slave_handle_t structure which stores the transfer state.
void I2C_SlaveTransferCreateHandle ( I2C_Type *  base,
i2c_slave_handle_t *  handle,
i2c_slave_transfer_callback_t  callback,
void *  userData 
)

Init the I2C handle which is used in transcational functions.

Parameters
baseI2C base pointer.
handlepointer to i2c_slave_handle_t structure to store the transfer state.
callbackpointer to user callback function.
userDatauser param passed to the callback function.
status_t I2C_SlaveTransferGetCount ( I2C_Type *  base,
i2c_slave_handle_t *  handle,
size_t *  count 
)

Get slave transfer remaining bytes during a interrupt non-blocking transfer.

Parameters
baseI2C base pointer.
handlepointer to i2c_slave_handle_t structure.
countNumber of bytes transferred so far by the non-blocking transaction.
Return values
kStatus_InvalidArgumentcount is Invalid.
kStatus_SuccessSuccessfully return the count.
void I2C_SlaveTransferHandleIRQ ( I2C_Type *  base,
void *  i2cHandle 
)

Slave interrupt handler.

Parameters
baseI2C base pointer.
i2cHandlepointer to i2c_slave_handle_t structure which stores the transfer state
status_t I2C_SlaveTransferNonBlocking ( I2C_Type *  base,
i2c_slave_handle_t *  handle,
uint32_t  eventMask 
)

Start accepting slave transfers.

Call this API after calling I2C_SlaveInit() and I2C_SlaveTransferCreateHandle() to start processing transactions driven by an I2C master. The slave will monitor the I2C bus and pass events to the callback that was passed into the call to I2C_SlaveTransferCreateHandle(). The callback is always invoked from the interrupt context.

The set of events received by the callback is customizable. To do so, set the eventMask parameter to the OR'd combination of i2c_slave_transfer_event_t enumerators for the events you wish to receive. The kI2C_SlaveTransmitEvent and kLPI2C_SlaveReceiveEvent events are always enabled and do not need to be included in the mask. Alternatively, you can pass 0 to get a default set of only the transmit and receive events that are always enabled. In addition, the kI2C_SlaveAllEvents constant is provided as a convenient way to enable all events.

Parameters
baseThe I2C peripheral base address.
handlePointer to #i2c_slave_handle_t structure which stores the transfer state.
eventMaskBit mask formed by OR'ing together i2c_slave_transfer_event_t enumerators to specify which events to send to the callback. Other accepted values are 0 to get a default set of only the transmit and receive events, and kI2C_SlaveAllEvents to enable all events.
Return values
#kStatus_SuccessSlave transfers were successfully started.
kStatus_I2C_BusySlave transfers have already been started on this handle.
status_t I2C_SlaveWriteBlocking ( I2C_Type *  base,
const uint8_t *  txBuff,
size_t  txSize 
)

Performs a polling send transaction on the I2C bus.

Parameters
baseThe I2C peripheral base pointer.
txBuffThe pointer to the data to be transferred.
txSizeThe length in bytes of the data to be transferred.
Return values
kStatus_SuccessSucessully complete the data transmission.
kStatus_I2C_ArbitrationLostTransfer error, arbitration lost.
kStataus_I2C_NakTransfer error, receive Nak during transfer.