Middleware to implement the I2C communications interface. This module implements the Communicatons Middleware Interface.
Overview
Features
The implementation of the I2C communications interface has the following key features:
- Reading data from, writing data to I2C bus
- Writes to I2C bus, then reads with restart
- A single I2C bus used by multiple I2C devices
Configuration
Build Time Configurations for rm_comms_i2c
The following build time configurations are defined in fsp_cfg/rm_comms_i2c_cfg.h:
Configuration | Options | Default | Description |
Parameter Checking |
-
Default (BSP)
-
Enabled
-
Disabled
| Default (BSP) | If selected code for parameter checking is included in the build. |
Configurations for Connectivity > I2C Shared Bus (rm_comms_i2c)
This module can be added to the Stacks tab via New Stack > Connectivity > I2C Shared Bus (rm_comms_i2c).
Configuration | Options | Default | Description |
Name | Name must be a valid C symbol | g_comms_i2c_bus0 | Module name. |
Bus Timeout | Value must be a non-negative integer less than or equal to 0xFFFFFFFF | 0xFFFFFFFF | Set timeout for locking bus in using RTOS. |
Semaphore for Blocking (RTOS only) |
| Use | Set Semaphore for blocking in using RTOS. |
Recursive Mutex for Bus (RTOS only) |
| Use | Set Mutex for locking bus in using RTOS. |
Channel | Manual Entry | 0 | IIC channel |
Rate |
-
Standard
-
Fast-mode
-
Fast-mode plus
| Standard | Transfer rate for lower level driver. |
Configurations for Connectivity > I2C Communication Device (rm_comms_i2c)
This module can be added to the Stacks tab via New Stack > Connectivity > I2C Communication Device (rm_comms_i2c).
Configuration | Options | Default | Description |
Name | Name must be a valid C symbol | g_comms_i2c_device0 | Module name. |
Semaphore Timeout (RTOS only) | Value must be a non-negative integer less than or equal to 0xFFFFFFFF | 0xFFFFFFFF | Set timeout for blocking in using RTOS. |
Slave Address | Value must be non-negative | 0x00 | Specify the slave address. |
Address Mode |
| 7-Bit | Select the I2C address mode. |
Callback | Name must be a valid C symbol | comms_i2c_callback | A user callback function can be provided. |
Pin Configuration
This module uses SDA and SCL pins of I2C Master, SCI I2C, IICA Master and SAU I2C.
Usage Notes
If an RTOS is used, blocking and bus lock is available.
- If blocking of an I2C bus is required, it is necessary to create a semaphore for blocking.
- If bus lock is required, it is necessary to create a mutex for bus lock. Bus lock is only available when a semaphore for blocking is used.
If an RTOS is used and blocking and bus lock is enabled, RM_COMMS_I2C_Write(), RM_COMMS_I2C_Read() and RM_COMMS_I2C_WriteRead() cannot be called in callback.
Bus Initialization
The I2C communications interface expects a bus instance to be opened before opening any specific I2C comms device. The communications interface will handle switching between devices on the bus but will not open or close the bus instance. The user should open the bus with the appropriate I2C Master Interface open call.
Examples
Basic Example
This is a basic example of minimal use of I2C communications implementation in an application.
void rm_comms_i2c_basic_example (void)
{
rm_comms_i2c_bus_extended_cfg_t * p_extend = (rm_comms_i2c_bus_extended_cfg_t *) g_comms_i2c_cfg.p_extend;
p_driver_instance->
p_api->
open(p_driver_instance->p_ctrl, p_driver_instance->p_cfg);
#if BSP_CFG_RTOS
if (NULL != p_extend->p_blocking_semaphore)
{
#if BSP_CFG_RTOS == 1 // AzureOS
tx_semaphore_create(p_extend->p_blocking_semaphore->p_semaphore_handle,
p_extend->p_blocking_semaphore->p_semaphore_name,
(ULONG) 0);
#elif BSP_CFG_RTOS == 2 // FreeRTOS
*(p_extend->p_blocking_semaphore->p_semaphore_handle) =
xSemaphoreCreateCountingStatic((UBaseType_t) 1,
(UBaseType_t) 0,
p_extend->p_blocking_semaphore->p_semaphore_memory);
#endif
}
if (NULL != p_extend->p_bus_recursive_mutex)
{
#if BSP_CFG_RTOS == 1 // AzureOS
tx_mutex_create(p_extend->p_bus_recursive_mutex->p_mutex_handle,
p_extend->p_bus_recursive_mutex->p_mutex_name,
TX_INHERIT);
#elif BSP_CFG_RTOS == 2 // FreeRTOS
*(p_extend->p_bus_recursive_mutex->p_mutex_handle) =
xSemaphoreCreateRecursiveMutexStatic(p_extend->p_bus_recursive_mutex->p_mutex_memory);
#endif
}
#endif
handle_error(err);
while (true)
{
g_flag = 0;
while (0 == g_flag)
{
}
g_flag = 0;
while (0 == g_flag)
{
}
}
}
◆ rm_comms_i2c_instance_ctrl_t
struct rm_comms_i2c_instance_ctrl_t |
Communications middleware control structure.
◆ RM_COMMS_I2C_Open()
Opens and configures the Communications Middle module. Implements rm_comms_api_t::open.
Example:
- Return values
-
FSP_SUCCESS | Communications Middle module successfully configured. |
FSP_ERR_ASSERTION | Null pointer, or one or more configuration options is invalid. |
FSP_ERR_ALREADY_OPEN | Module is already open. This module can only be opened once. |
FSP_ERR_COMMS_BUS_NOT_OPEN | I2C driver is not open. |
◆ RM_COMMS_I2C_Close()
Disables specified Communications Middle module. Implements rm_comms_api_t::close.
- Return values
-
FSP_SUCCESS | Successfully closed. |
FSP_ERR_ASSERTION | Null pointer passed as a parameter. |
FSP_ERR_NOT_OPEN | Module is not open. |
◆ RM_COMMS_I2C_Read()
Performs a read from the I2C device. Implements rm_comms_api_t::read.
- Return values
-
FSP_SUCCESS | Successfully data decoded. |
FSP_ERR_ASSERTION | Null pointer passed as a parameter. |
FSP_ERR_NOT_OPEN | Module is not open. |
◆ RM_COMMS_I2C_Write()
Performs a write from the I2C device. Implements rm_comms_api_t::write.
- Return values
-
FSP_SUCCESS | Successfully writing data . |
FSP_ERR_ASSERTION | Null pointer passed as a parameter. |
FSP_ERR_NOT_OPEN | Module is not open. |
◆ RM_COMMS_I2C_WriteRead()
Performs a write to, then a read from the I2C device. Implements rm_comms_api_t::writeRead.
- Return values
-
FSP_SUCCESS | Successfully data decoded. |
FSP_ERR_ASSERTION | Null pointer passed as a parameter. |
FSP_ERR_NOT_OPEN | Module is not open. |