Library for the MAX11300

Committer:
j3
Date:
Mon May 08 17:49:57 2017 +0000
Revision:
10:6efe114ef882
Parent:
9:094df3de3616
Child:
12:8054ee101bad
Added support for determining if 20 or 12 port devices.  Memory map slightly different, so read/write paths different.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
j3 7:8669a53acd0d 1 /**********************************************************************
j3 7:8669a53acd0d 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
j3 7:8669a53acd0d 3 *
j3 7:8669a53acd0d 4 * Permission is hereby granted, free of charge, to any person obtaining a
j3 7:8669a53acd0d 5 * copy of this software and associated documentation files (the "Software"),
j3 7:8669a53acd0d 6 * to deal in the Software without restriction, including without limitation
j3 7:8669a53acd0d 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
j3 7:8669a53acd0d 8 * and/or sell copies of the Software, and to permit persons to whom the
j3 7:8669a53acd0d 9 * Software is furnished to do so, subject to the following conditions:
j3 7:8669a53acd0d 10 *
j3 7:8669a53acd0d 11 * The above copyright notice and this permission notice shall be included
j3 7:8669a53acd0d 12 * in all copies or substantial portions of the Software.
j3 7:8669a53acd0d 13 *
j3 7:8669a53acd0d 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
j3 7:8669a53acd0d 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
j3 7:8669a53acd0d 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
j3 7:8669a53acd0d 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
j3 7:8669a53acd0d 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
j3 7:8669a53acd0d 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
j3 7:8669a53acd0d 20 * OTHER DEALINGS IN THE SOFTWARE.
j3 7:8669a53acd0d 21 *
j3 7:8669a53acd0d 22 * Except as contained in this notice, the name of Maxim Integrated
j3 7:8669a53acd0d 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
j3 7:8669a53acd0d 24 * Products, Inc. Branding Policy.
j3 7:8669a53acd0d 25 *
j3 7:8669a53acd0d 26 * The mere transfer of this software does not imply any licenses
j3 7:8669a53acd0d 27 * of trade secrets, proprietary technology, copyrights, patents,
j3 7:8669a53acd0d 28 * trademarks, maskwork rights, or any other form of intellectual
j3 7:8669a53acd0d 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
j3 7:8669a53acd0d 30 * ownership rights.
j3 7:8669a53acd0d 31 **********************************************************************/
j3 7:8669a53acd0d 32
j3 7:8669a53acd0d 33
j3 7:8669a53acd0d 34 #ifndef _MAX113XX_PIXI_H_
j3 7:8669a53acd0d 35 #define _MAX113XX_PIXI_H_
j3 7:8669a53acd0d 36
j3 9:094df3de3616 37
j3 7:8669a53acd0d 38 #include "mbed.h"
j3 10:6efe114ef882 39 #include "MAX11301Hex.h"
j3 9:094df3de3616 40
j3 7:8669a53acd0d 41
j3 7:8669a53acd0d 42 /**
j3 8:4291f7e54863 43 @brief MAX113XX - PIXI, 20/12-Port Programmable Mixed-Signal I/O with
j3 7:8669a53acd0d 44 12-Bit ADC, 12-Bit DAC, Analog Switches, and GPIO
j3 7:8669a53acd0d 45
j3 8:4291f7e54863 46 The MAX113XX family integrates a PIXI™, 12-bit, multichannel, analog-to-digital
j3 7:8669a53acd0d 47 converter (ADC) and a 12-bit, multichannel, buffered digital-to-analog
j3 8:4291f7e54863 48 converter (DAC) in a single integrated circuit (IC). These devices offers
j3 8:4291f7e54863 49 20/12 mixed-signal high-voltage, bipolar ports, which are configurable as an
j3 7:8669a53acd0d 50 ADC analog input, a DAC analog output, a general-purpose input port (GPI),
j3 7:8669a53acd0d 51 a general-purpose output port (GPO), or an analog switch terminal.
j3 7:8669a53acd0d 52 One internal and two external temperature sensors track junction and
j3 7:8669a53acd0d 53 environmental temperature, respectively. Adjacent pairs of ports are
j3 7:8669a53acd0d 54 configurable as a logic-level translator for open-drain devices or an
j3 7:8669a53acd0d 55 analog switch.
j3 7:8669a53acd0d 56
j3 7:8669a53acd0d 57 Use configuration software found at
j3 7:8669a53acd0d 58 https://www.maximintegrated.com/en/products/analog/data-converters/analog-to-digital-converters/MAX11300.html/tb_tab2
j3 9:094df3de3616 59 to generate MAX113XXHex.h file
j3 7:8669a53acd0d 60 */
j3 7:8669a53acd0d 61 class MAX113XX_Pixi
j3 7:8669a53acd0d 62 {
j3 7:8669a53acd0d 63 public:
j3 7:8669a53acd0d 64
j3 10:6efe114ef882 65 ///Pixi devices
j3 9:094df3de3616 66 enum Device_e
j3 9:094df3de3616 67 {
j3 9:094df3de3616 68 MAX11300 = 0,
j3 9:094df3de3616 69 MAX11301,
j3 9:094df3de3616 70 MAX11311,
j3 9:094df3de3616 71 MAX11312
j3 9:094df3de3616 72 };
j3 9:094df3de3616 73
j3 9:094df3de3616 74 ///MAX113XX Ports
j3 9:094df3de3616 75 enum Ports_e
j3 7:8669a53acd0d 76 {
j3 7:8669a53acd0d 77 PORT0,
j3 7:8669a53acd0d 78 PORT1,
j3 7:8669a53acd0d 79 PORT2,
j3 7:8669a53acd0d 80 PORT3,
j3 7:8669a53acd0d 81 PORT4,
j3 7:8669a53acd0d 82 PORT5,
j3 7:8669a53acd0d 83 PORT6,
j3 7:8669a53acd0d 84 PORT7,
j3 7:8669a53acd0d 85 PORT8,
j3 7:8669a53acd0d 86 PORT9,
j3 7:8669a53acd0d 87 PORT10,
j3 7:8669a53acd0d 88 PORT11,
j3 7:8669a53acd0d 89 PORT12,
j3 7:8669a53acd0d 90 PORT13,
j3 7:8669a53acd0d 91 PORT14,
j3 7:8669a53acd0d 92 PORT15,
j3 7:8669a53acd0d 93 PORT16,
j3 7:8669a53acd0d 94 PORT17,
j3 7:8669a53acd0d 95 PORT18,
j3 7:8669a53acd0d 96 PORT19
j3 7:8669a53acd0d 97 };
j3 7:8669a53acd0d 98
j3 9:094df3de3616 99 ///MAX113XX Port Modes
j3 9:094df3de3616 100 enum PortModes_e
j3 7:8669a53acd0d 101 {
j3 7:8669a53acd0d 102 ///HIGH_Z
j3 7:8669a53acd0d 103 MODE_0,
j3 7:8669a53acd0d 104 ///Digital input with programmable threshold, GPI
j3 7:8669a53acd0d 105 MODE_1,
j3 7:8669a53acd0d 106 ///Bidirectional level translator terminal
j3 7:8669a53acd0d 107 MODE_2,
j3 7:8669a53acd0d 108 ///Register-driven digital output with DAC-controlled level, GPO
j3 7:8669a53acd0d 109 MODE_3,
j3 7:8669a53acd0d 110 ///Unidirectional path output with DAC-controlled level, GPO
j3 7:8669a53acd0d 111 MODE_4,
j3 7:8669a53acd0d 112 ///Analog output for DAC
j3 7:8669a53acd0d 113 MODE_5,
j3 7:8669a53acd0d 114 ///Analog output for DAC with ADC monitoring
j3 7:8669a53acd0d 115 MODE_6,
j3 7:8669a53acd0d 116 ///Positive analog input to single-ended ADC
j3 7:8669a53acd0d 117 MODE_7,
j3 7:8669a53acd0d 118 ///Positive analog input to differential ADC
j3 7:8669a53acd0d 119 MODE_8,
j3 7:8669a53acd0d 120 ///Negative analog input to differential ADC
j3 7:8669a53acd0d 121 MODE_9,
j3 7:8669a53acd0d 122 ///Analog output for DAC and negative analog input to differential ADC
j3 7:8669a53acd0d 123 MODE_10,
j3 7:8669a53acd0d 124 ///Terminal to GPI-controlled analog switch
j3 7:8669a53acd0d 125 MODE_11,
j3 7:8669a53acd0d 126 ///Terminal to register-controlled analog switch
j3 7:8669a53acd0d 127 MODE_12
j3 7:8669a53acd0d 128 };
j3 7:8669a53acd0d 129
j3 10:6efe114ef882 130 ///Command results
j3 7:8669a53acd0d 131 enum CmdResult_e
j3 7:8669a53acd0d 132 {
j3 7:8669a53acd0d 133 ///Failed operation
j3 7:8669a53acd0d 134 OpFailure,
j3 7:8669a53acd0d 135 ///Successful operation
j3 7:8669a53acd0d 136 Success
j3 7:8669a53acd0d 137 };
j3 7:8669a53acd0d 138
j3 9:094df3de3616 139 MAX113XX_Pixi(Device_e device, PinName cnvt);
j3 7:8669a53acd0d 140
j3 7:8669a53acd0d 141 ///@brief Writes gpo configured port with lsb of state
j3 7:8669a53acd0d 142 ///@param[in] port - gpo congigured port to be written
j3 7:8669a53acd0d 143 ///@param[in] state - lsb of state is written to port
j3 7:8669a53acd0d 144 ///@return Result of operation
j3 9:094df3de3616 145 CmdResult_e gpioWrite(Ports_e port, const uint8_t state);
j3 7:8669a53acd0d 146
j3 7:8669a53acd0d 147 ///@brief Reads gpi configured port
j3 7:8669a53acd0d 148 ///@param[in] port - gpi congigured port to be read
j3 7:8669a53acd0d 149 ///@param[out] state - lsb of state matches port state
j3 7:8669a53acd0d 150 ///@return Result of operation
j3 9:094df3de3616 151 CmdResult_e gpioRead(Ports_e port, uint8_t &state);
j3 7:8669a53acd0d 152
j3 7:8669a53acd0d 153 ///@brief Read single ended ADC configured port
j3 7:8669a53acd0d 154 ///@param[in] port - single ended ADC configured port
j3 7:8669a53acd0d 155 ///@param[out] data - contents of ADC data register
j3 7:8669a53acd0d 156 ///@return Result of operation
j3 9:094df3de3616 157 CmdResult_e singleEndedADCRead(Ports_e port, uint16_t &data);
j3 7:8669a53acd0d 158
j3 7:8669a53acd0d 159 ///@brief Write single ended DAC configured port
j3 7:8669a53acd0d 160 ///@param[in] port - single ended DAC configured port
j3 7:8669a53acd0d 161 ///@param[in] data - value to be written to DAC data register
j3 7:8669a53acd0d 162 ///@return Result of operation
j3 9:094df3de3616 163 CmdResult_e singleEndedDACWrite(Ports_e port, const uint16_t data);
j3 7:8669a53acd0d 164
j3 10:6efe114ef882 165 ///@brief Dumps pixi memory to provided Serial object
j3 10:6efe114ef882 166 ///@param[in] ser - output device
j3 10:6efe114ef882 167 ///@param[in] pixi - pixi device
j3 10:6efe114ef882 168 ///@return None
j3 7:8669a53acd0d 169 void dumpPixiMemory(Serial &ser, MAX113XX_Pixi &pixi);
j3 7:8669a53acd0d 170
j3 7:8669a53acd0d 171 protected:
j3 7:8669a53acd0d 172
j3 9:094df3de3616 173 Device_e m_device;
j3 7:8669a53acd0d 174 DigitalOut m_cnvt;
j3 7:8669a53acd0d 175
j3 7:8669a53acd0d 176 ///@brief Writes given register with data
j3 7:8669a53acd0d 177 ///@param[in] reg - register to be written
j3 7:8669a53acd0d 178 ///@param[in] data - data to write
j3 7:8669a53acd0d 179 ///@return none
j3 9:094df3de3616 180 virtual void writeRegister(uint8_t reg, const uint16_t data) = 0;
j3 7:8669a53acd0d 181
j3 7:8669a53acd0d 182 ///@brief Reads given register
j3 7:8669a53acd0d 183 ///@param[in] reg - register to read
j3 7:8669a53acd0d 184 ///@return contents of register
j3 9:094df3de3616 185 virtual uint16_t readRegister(uint8_t reg) = 0;
j3 7:8669a53acd0d 186
j3 7:8669a53acd0d 187 ///@brief Writes a block of data starting at given register
j3 7:8669a53acd0d 188 ///@param[in] reg - register to start writing at
j3 7:8669a53acd0d 189 ///@param[in] data - pointer to data buffer
j3 7:8669a53acd0d 190 ///@param[in] num_reg - number of registers to be written
j3 7:8669a53acd0d 191 ///@return none
j3 9:094df3de3616 192 virtual void blockWrite(uint8_t reg, const uint16_t *data,
j3 9:094df3de3616 193 const uint8_t num_reg) = 0;
j3 7:8669a53acd0d 194
j3 7:8669a53acd0d 195 ///@brief Reads a block of data starting at given register
j3 7:8669a53acd0d 196 ///@param[in] reg - register to start reading at
j3 7:8669a53acd0d 197 ///@param[in] data - pointer to data buffer
j3 7:8669a53acd0d 198 ///@param[in] num_reg - number of registers to be read
j3 7:8669a53acd0d 199 ///@return none
j3 9:094df3de3616 200 virtual void blockRead(uint8_t reg, uint16_t *data,
j3 9:094df3de3616 201 const uint8_t num_reg) = 0;
j3 7:8669a53acd0d 202 };
j3 7:8669a53acd0d 203
j3 7:8669a53acd0d 204
j3 7:8669a53acd0d 205 /**
j3 7:8669a53acd0d 206 @brief SPI Declaration for MAX113XX parts
j3 7:8669a53acd0d 207 */
j3 7:8669a53acd0d 208 class MAX113XX_SPI: public MAX113XX_Pixi
j3 7:8669a53acd0d 209 {
j3 7:8669a53acd0d 210
j3 7:8669a53acd0d 211 public:
j3 7:8669a53acd0d 212
j3 7:8669a53acd0d 213 ///@brief MAX113XX_SPI Constructor
j3 7:8669a53acd0d 214 ///@param[in] spiBus - reference to SPI bus for this device
j3 7:8669a53acd0d 215 ///@param[in] cs - pin to be used for chip select
j3 10:6efe114ef882 216 ///@param[in] device - pixi device; MAX11300, MAX11301,...
j3 7:8669a53acd0d 217 ///@param[in] cnvrt - pin to be used for convert
j3 9:094df3de3616 218 MAX113XX_SPI(SPI & spiBus, PinName cs, MAX113XX_Pixi::Device_e device,
j3 9:094df3de3616 219 PinName cnvt);
j3 7:8669a53acd0d 220
j3 7:8669a53acd0d 221 ///@brief MAX113XX_SPI Destructor
j3 7:8669a53acd0d 222 ~MAX113XX_SPI();
j3 7:8669a53acd0d 223
j3 7:8669a53acd0d 224 private:
j3 7:8669a53acd0d 225
j3 7:8669a53acd0d 226 SPI & m_spiBus;
j3 7:8669a53acd0d 227 DigitalOut m_cs;
j3 7:8669a53acd0d 228
j3 9:094df3de3616 229 virtual void writeRegister(uint8_t reg, const uint16_t data);
j3 7:8669a53acd0d 230
j3 9:094df3de3616 231 virtual uint16_t readRegister(uint8_t reg);
j3 7:8669a53acd0d 232
j3 9:094df3de3616 233 virtual void blockWrite(uint8_t reg, const uint16_t *data,
j3 7:8669a53acd0d 234 const uint8_t num_reg);
j3 7:8669a53acd0d 235
j3 9:094df3de3616 236 virtual void blockRead(uint8_t reg, uint16_t *data, const uint8_t num_reg);
j3 7:8669a53acd0d 237 };
j3 7:8669a53acd0d 238
j3 7:8669a53acd0d 239
j3 7:8669a53acd0d 240 /**
j3 7:8669a53acd0d 241 @brief I2C Declaration for MAX113XX parts
j3 7:8669a53acd0d 242 */
j3 7:8669a53acd0d 243 class MAX113XX_I2C: public MAX113XX_Pixi
j3 7:8669a53acd0d 244 {
j3 7:8669a53acd0d 245
j3 7:8669a53acd0d 246 public:
j3 7:8669a53acd0d 247
j3 7:8669a53acd0d 248 ///@brief MAX113XX_I2C Constructor
j3 7:8669a53acd0d 249 ///@param[in] i2cBus - reference to I2C bus for this device
j3 10:6efe114ef882 250 ///@param[in] device - pixi device; MAX11300, MAX11301,...
j3 7:8669a53acd0d 251 ///@param[in] cnvrt - pin to be used for convert
j3 9:094df3de3616 252 MAX113XX_I2C(I2C &i2cBus, MAX113XX_Pixi::Device_e device, PinName cnvt);
j3 7:8669a53acd0d 253
j3 7:8669a53acd0d 254 ///@brief MAX113XX_I2C Destructor
j3 7:8669a53acd0d 255 ~MAX113XX_I2C();
j3 7:8669a53acd0d 256
j3 7:8669a53acd0d 257 private:
j3 7:8669a53acd0d 258
j3 7:8669a53acd0d 259 I2C &m_i2cBus;
j3 7:8669a53acd0d 260
j3 9:094df3de3616 261 virtual void writeRegister(uint8_t reg, const uint16_t data);
j3 7:8669a53acd0d 262
j3 9:094df3de3616 263 virtual uint16_t readRegister(uint8_t reg);
j3 7:8669a53acd0d 264
j3 9:094df3de3616 265 virtual void blockWrite(uint8_t reg, const uint16_t *data,
j3 7:8669a53acd0d 266 const uint8_t num_reg);
j3 7:8669a53acd0d 267
j3 9:094df3de3616 268 virtual void blockRead(uint8_t reg, uint16_t *data, const uint8_t num_reg);
j3 7:8669a53acd0d 269 };
j3 7:8669a53acd0d 270
j3 7:8669a53acd0d 271
j3 7:8669a53acd0d 272 #endif /* _MAX113XX_PIXI_H_ */