8:4 Matrix Multiplexer
Fork of max14661 by
This is an untested driver for the MAX14724.
max14661.cpp
- Committer:
- j3
- Date:
- 2014-11-17
- Revision:
- 1:c1fdfe4c2354
- Parent:
- 0:c770ad7363c8
- Child:
- 2:88c168ddc145
File content as of revision 1:c1fdfe4c2354:
/******************************************************************//** * @file max14661.cpp * * @author Justin Jordan * * @version 0.0 * * Started: 11NOV14 * * Updated: * * @brief Source file for MAX14661 class * *********************************************************************** * * @copyright * Copyright (C) 2013 Maxim Integrated Products, Inc., All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name of Maxim Integrated * Products, Inc. shall not be used except as stated in the Maxim Integrated * Products, Inc. Branding Policy. * * The mere transfer of this software does not imply any licenses * of trade secrets, proprietary technology, copyrights, patents, * trademarks, maskwork rights, or any other form of intellectual * property whatsoever. Maxim Integrated Products, Inc. retains all * ownership rights. **********************************************************************/ #include "max14661.h" /******************************************************************//** * Constructor for Max14661 class * * On Entry: * @param[in] p_i2c - pointer to I2C object for bus * @param[in] i2c_adrs - 7-bit slave address of MAX14661 * * On Exit: * @return none * * Example: * @code * * I2C i2c_bus(D14, D15); //instantiate I2C bus * I2C * p_i2c_bus = &i2c_bus; //create pointer to bus * * //instantiate mux object * Max14661 mux(p_i2c_bus, MAX14661_I2C_ADRS0); * * @endcode **********************************************************************/ Max14661::Max14661(I2C* ptr_i2c_bus, max14661_i2c_adrs_t i2c_adrs) { p_i2c = ptr_i2c_bus; w_adrs = (i2c_adrs << 1); r_adrs = (w_adrs | 0x01); } /******************************************************************//** * Writes given commands to CMD_A and CMD_B * * On Entry: * @param[in] cmdA - command for CMD_A * @param[in] cmdB - command for CMD_B * * On Exit: * @return return value = 0 on success, non-0 on failure * * Example: * @code * * I2C i2c_bus(D14, D15); //instantiate I2C bus * I2C * p_i2c_bus = &i2c_bus; //create pointer to bus * * //instantiate mux object * Max14661 mux(p_i2c_bus, MAX14661_I2C_ADRS0); * * uint16_t rtn_val; * * rtn_val = mux.wrt_cmd_registers(DISABLE_BANK, DISABLE_BANK); * * @endcode **********************************************************************/ uint16_t Max14661::wrt_cmd_registers(max14661_cmds_t cmdA, max14661_cmds_t cmdB) { uint8_t data[3]; uint8_t data_length = 0; uint16_t rtn_val = 1; //build packet data[data_length++] = CMD_A; data[data_length++] = cmdA; data[data_length++] = cmdB; rtn_val = p_i2c->write(w_adrs,(const char*) data, data_length); return(rtn_val); } /******************************************************************//** * Writes data pointed at by 'data' to shadow registers * * On Entry: * @param[in] data - pointer to data * * On Exit: * @return return value = 0 on success, non-0 on failure * * Example: * @code * * I2C i2c_bus(D14, D15); //instantiate I2C bus * I2C * p_i2c_bus = &i2c_bus; //create pointer to bus * * //instantiate mux object * Max14661 mux(p_i2c_bus, MAX14661_I2C_ADRS0); * * uint8_t data[] = {1, 2, 3, 4}; * uint16_t rtn_val; * * //wite shadow registers * rtn_val = mux.wrt_shadow_registers(data); * * @endcode **********************************************************************/ uint16_t Max14661::wrt_shadow_registers(uint8_t* data) { uint8_t local_data[5]; uint8_t data_length = 0; uint16_t rtn_val = 1; local_data[data_length++] = SHDW0; for(; data_length < 5; data_length++) { local_data[data_length] = data[data_length-1]; } rtn_val = p_i2c->write(w_adrs,(const char*) local_data, data_length); return(rtn_val); } /******************************************************************//** * Writes data pointed at by 'data' to direct access registers * * On Entry: * @param[in] data - pointer to data to be written * * On Exit: * @return return value = 0 on success, non-0 on failure * * Example: * @code * * I2C i2c_bus(D14, D15); //instantiate I2C bus * I2C * p_i2c_bus = &i2c_bus; //create pointer to bus * * //instantiate mux object * Max14661 mux(p_i2c_bus, MAX14661_I2C_ADRS0); * * uint8_t data[] = {1, 2, 3, 4}; * uint16_t rtn_val; * * //wite shadow registers * rtn_val = mux.wrt_shadow_registers(data); * * @endcode **********************************************************************/ uint16_t Max14661::wrt_dir_registers(uint8_t* data) { uint8_t local_data[5]; uint8_t data_length = 0; uint16_t rtn_val = 1; local_data[data_length++] = DIR0; for(; data_length < 5; data_length++) { local_data[data_length] = data[data_length-1]; } rtn_val = p_i2c->write(w_adrs,(const char*) local_data, data_length); return(rtn_val); } /**********************************************************//** * Reads data from direct access registers starting at DIR0 and * stores it in byte array pointed at by 'data' * * On Entry: * @param[in] data - pointer to byte array for storing data * * On Exit: * @param[out] data - data buffer now contains data read * from dir registers * @return return value = 0 on success, non-0 on failure * * Example: * @code * * I2C i2c_bus(D14, D15); //instantiate I2C bus * I2C * p_i2c_bus = &i2c_bus; //create pointer to bus * * //instantiate mux object * Max14661 mux(p_i2c_bus, MAX14661_I2C_ADRS0); * * uint16_t rtn_val; * uint8_t data[4]; * * //read direct access registers * rtn_val = mux.rd_dir_registers(data); * * @endcode **********************************************************************/ uint16_t Max14661::rd_dir_registers(uint8_t* data) { uint16_t rtn_val = 1; uint8_t local_data = DIR0; rtn_val = p_i2c->write(w_adrs,(const char*) local_data, 1); if(!rtn_val) { rtn_val = p_i2c->read(r_adrs,(char*) data, 4); } return(rtn_val); } /**********************************************************//** * Reads data from shadow registers starting at SHDW0 and stores * it in byte array pointed at by 'data' * * On Entry: * @param[in] data - pointer to byte array for storing data * * On Exit: * @param[out] data - data buffer now contains data read * from shadow registers * @return return value = 0 on success, non-0 on failure * * Example: * @code * * I2C i2c_bus(D14, D15); //instantiate I2C bus * I2C * p_i2c_bus = &i2c_bus; //create pointer to bus * * //instantiate mux object * Max14661 mux(p_i2c_bus, MAX14661_I2C_ADRS0); * * uint16_t rtn_val; * uint8_t data[4]; * * //read shadow registers * rtn_val = mux.rd_shadow_registers(data); * * @endcode **************************************************************/ uint16_t Max14661::rd_shadow_registers(uint8_t* data) { uint16_t rtn_val = 1; uint8_t local_data = SHDW0; rtn_val = p_i2c->write(w_adrs,(const char*) local_data, 1); if(!rtn_val) { rtn_val = p_i2c->read(r_adrs,(char*) data, 4); } return(rtn_val); }