Analog Devices / mbed-drivers

For additional information check out the mbed page of the Analog Devices wiki: https://wiki.analog.com/resources/tools-software/mbed-drivers-all

Committer:
Suciu
Date:
Fri Apr 01 10:53:41 2016 +0300
Revision:
3:1a8c14043a4e
Parent:
1:c1f0670bb370
Child:
4:5c1b28aff7e1
Added license, file headers and fixed missing whitespaces

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Suciu 1:c1f0670bb370 1 /**
Suciu 1:c1f0670bb370 2 * @file AD7790.h
Suciu 1:c1f0670bb370 3 * @brief Header file for AD7790 ADC
Suciu 3:1a8c14043a4e 4 * @author Analog Devices Inc.
Suciu 3:1a8c14043a4e 5 *
Suciu 3:1a8c14043a4e 6 * For support please go to:
Suciu 3:1a8c14043a4e 7 * Github: https://github.com/analogdevicesinc/mbed-adi
Suciu 3:1a8c14043a4e 8 * Support: https://ez.analog.com/community/linux-device-drivers/microcontroller-no-os-drivers
Suciu 3:1a8c14043a4e 9 * Product: http://www.analog.com/ad7790
Suciu 3:1a8c14043a4e 10 * More: https://wiki.analog.com/resources/tools-software/mbed-drivers-all
Suciu 3:1a8c14043a4e 11
Suciu 3:1a8c14043a4e 12 ********************************************************************************
Suciu 3:1a8c14043a4e 13 * Copyright 2016(c) Analog Devices, Inc.
Suciu 3:1a8c14043a4e 14 *
Suciu 3:1a8c14043a4e 15 * All rights reserved.
Suciu 3:1a8c14043a4e 16 *
Suciu 3:1a8c14043a4e 17 * Redistribution and use in source and binary forms, with or without
Suciu 3:1a8c14043a4e 18 * modification, are permitted provided that the following conditions are met:
Suciu 3:1a8c14043a4e 19 * - Redistributions of source code must retain the above copyright
Suciu 3:1a8c14043a4e 20 * notice, this list of conditions and the following disclaimer.
Suciu 3:1a8c14043a4e 21 * - Redistributions in binary form must reproduce the above copyright
Suciu 3:1a8c14043a4e 22 * notice, this list of conditions and the following disclaimer in
Suciu 3:1a8c14043a4e 23 * the documentation and/or other materials provided with the
Suciu 3:1a8c14043a4e 24 * distribution.
Suciu 3:1a8c14043a4e 25 * - Neither the name of Analog Devices, Inc. nor the names of its
Suciu 3:1a8c14043a4e 26 * contributors may be used to endorse or promote products derived
Suciu 3:1a8c14043a4e 27 * from this software without specific prior written permission.
Suciu 3:1a8c14043a4e 28 * - The use of this software may or may not infringe the patent rights
Suciu 3:1a8c14043a4e 29 * of one or more patent holders. This license does not release you
Suciu 3:1a8c14043a4e 30 * from the requirement that you obtain separate licenses from these
Suciu 3:1a8c14043a4e 31 * patent holders to use this software.
Suciu 3:1a8c14043a4e 32 * - Use of the software either in source or binary form, must be run
Suciu 3:1a8c14043a4e 33 * on or directly connected to an Analog Devices Inc. component.
Suciu 3:1a8c14043a4e 34 *
Suciu 3:1a8c14043a4e 35 * THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR
Suciu 3:1a8c14043a4e 36 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,
Suciu 3:1a8c14043a4e 37 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Suciu 3:1a8c14043a4e 38 * IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT,
Suciu 3:1a8c14043a4e 39 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Suciu 3:1a8c14043a4e 40 * LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR
Suciu 3:1a8c14043a4e 41 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Suciu 3:1a8c14043a4e 42 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Suciu 3:1a8c14043a4e 43 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Suciu 3:1a8c14043a4e 44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Suciu 3:1a8c14043a4e 45 *
Suciu 3:1a8c14043a4e 46 ********************************************************************************/
Suciu 1:c1f0670bb370 47
Suciu 1:c1f0670bb370 48 #ifndef AD7790_H
Suciu 1:c1f0670bb370 49 #define AD7790_H
Suciu 1:c1f0670bb370 50
Suciu 1:c1f0670bb370 51 #include "mbed.h"
Suciu 1:c1f0670bb370 52
Suciu 1:c1f0670bb370 53 /**
Suciu 1:c1f0670bb370 54 * @brief Analog Devices AD7790 SPI 16-bit Buffered Sigma-Delta ADC
Suciu 1:c1f0670bb370 55 */
Suciu 1:c1f0670bb370 56 class AD7790
Suciu 1:c1f0670bb370 57 {
Suciu 1:c1f0670bb370 58 public:
Suciu 1:c1f0670bb370 59 /// AD7790 registers
Suciu 1:c1f0670bb370 60 typedef enum {
Suciu 1:c1f0670bb370 61 COMMUNICATION_REG = 0, ///< Communication register
Suciu 1:c1f0670bb370 62 STATUS_REG = 0, ///< Status register
Suciu 1:c1f0670bb370 63 MODE_REG, ///< Mode register
Suciu 1:c1f0670bb370 64 FILTER_REG, ///< Filter Register
Suciu 1:c1f0670bb370 65 DATA_REG ///< Data register
Suciu 1:c1f0670bb370 66 } AD7790Registers_t;
Suciu 1:c1f0670bb370 67
Suciu 1:c1f0670bb370 68 /// AD7790 channel configuration
Suciu 1:c1f0670bb370 69 typedef enum {
Suciu 1:c1f0670bb370 70 DIFFERENTIAL, ///< AIN(+)-AIN(-)
Suciu 1:c1f0670bb370 71 RESERVED, ///< reserved
Suciu 1:c1f0670bb370 72 SHORT, ///< AIN(-)-AIN(-)
Suciu 1:c1f0670bb370 73 VDDMONITOR ///< Monitor VDD
Suciu 1:c1f0670bb370 74 } AD7790Channel_t;
Suciu 1:c1f0670bb370 75
Suciu 3:1a8c14043a4e 76 AD7790(PinName CS = SPI_CS, PinName MOSI = SPI_MOSI, PinName MISO = SPI_MISO, PinName SCK = SPI_SCK);
Suciu 1:c1f0670bb370 77 void frequency(int hz);
Suciu 1:c1f0670bb370 78 void reset(void);
Suciu 1:c1f0670bb370 79 void write_reg(AD7790Registers_t regAddress, uint8_t regValue);
Suciu 1:c1f0670bb370 80 uint16_t write_spi(uint16_t data);
Suciu 1:c1f0670bb370 81 uint16_t read_reg (AD7790Registers_t regAddress);
Suciu 1:c1f0670bb370 82 uint16_t read_data(void);
Suciu 1:c1f0670bb370 83
Suciu 1:c1f0670bb370 84 SPI ad7790; ///< SPI instance of the AD7790
Suciu 1:c1f0670bb370 85 DigitalOut cs; ///< DigitalOut instance for the chipselect of the AD7790
Suciu 1:c1f0670bb370 86
Suciu 1:c1f0670bb370 87 private:
Suciu 1:c1f0670bb370 88
Suciu 1:c1f0670bb370 89 const static int _RESET = 0xFF;
Suciu 1:c1f0670bb370 90 const static int _DUMMY_BYTE = 0xAA;
Suciu 1:c1f0670bb370 91 const static int _READ_FLAG = 0x0800;
Suciu 1:c1f0670bb370 92 const static int _DATA_READ = 0x38; // Read from the Data Register
Suciu 1:c1f0670bb370 93 };
Suciu 1:c1f0670bb370 94
Suciu 1:c1f0670bb370 95 #endif