We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
Rating:
Author: MIKROE
Last Updated: 2020-05-06
Package Version: 1.0.0.0
mikroSDK Library: 1.0.0.0
Category: I2C
Downloaded: 2750 times
Not followed.
License: MIT license
I2C MUX 2 Click is a quad bidirectional translating I2C and SMBus switch with reset and interrupt functions, intended for applications with I2C slave address conflicts. It features a quad bidirectional translating switch controlled via the I2C bus, labeled as TCA9545A from Texas Instruments.
Do you want to subscribe in order to receive notifications regarding "I2C MUX 2 click" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "I2C MUX 2 click" changes.
Do you want to report abuse regarding "I2C MUX 2 click".
Library Description
The library covers all the necessary functions to control I2C MUX 2 click board.
Key functions:
void i2cmux2_hw_reset ( void )
- Hardware reset functionvoid i2cmux2_set_channel ( uint8_t channel, uint8_t ch_slave_address )
- Set channel function.uint8_t i2cmux2_read_interrupt ( void )
- Read interrupt status function.Examples description
The application is composed of three sections :
void application_task ( )
{
mikrobus_logWrite( " CH | ID | INT " ,_LOG_LINE );
mikrobus_logWrite( "----------------------", _LOG_LINE );
// SET CHANNEL 0: 6DOF IMU 11 click
i2cmux2_set_channel( I2CMUX2_CMD_SET_CH_0, 0x0E );
Delay_ms( 100 );
i2cmux2_generic_read( 0x00, &rx_data, 1 );
mikrobus_logWrite( " 0 | 0x", _LOG_TEXT );
display_log( I2CMUX2_CMD_SET_CH_0 );
// SET CHANNEL 1: Altitude click
i2cmux2_set_channel( I2CMUX2_CMD_SET_CH_1, 0x60 );
Delay_ms( 100 );
i2cmux2_generic_read( 0x0C, &rx_data, 1 );
mikrobus_logWrite( " 1 | 0x", _LOG_TEXT );
display_log( I2CMUX2_CMD_SET_CH_1 );
// SET CHANNEL 2: 6DOF IMU 9 click
i2cmux2_set_channel( I2CMUX2_CMD_SET_CH_2, 0x69 );
Delay_ms( 100 );
i2cmux2_generic_read( 0x75, &rx_data, 1 );
mikrobus_logWrite( " 2 | 0x", _LOG_TEXT );
display_log( I2CMUX2_CMD_SET_CH_2 );
// SET CHANNEL 3: RTC 10 click
i2cmux2_set_channel( I2CMUX2_CMD_SET_CH_3, 0x68 );
Delay_ms( 100 );
i2cmux2_generic_read( 0x0F, &rx_data, 1 );
mikrobus_logWrite( " 3 | 0x", _LOG_TEXT );
display_log( I2CMUX2_CMD_SET_CH_3 );
mikrobus_logWrite( "----------------------", _LOG_LINE );
Delay_ms( 2000 );
}
Additional Functions :
void display_log ( uint8_t sel_ch )
- Display data logs.Other mikroE Libraries used in the example:
Additional notes and informations
Depending on the development board you are using, you may need USB UART click, USB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.