A collection of Analog Devices drivers for the mbed platform

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

Committer:
Adrian Suciu
Date:
Fri Apr 29 17:34:07 2016 +0300
Revision:
17:b8356808e8ad
Parent:
13:66c8e4ce4ff1
Child:
19:fb92949e59c9
Fixed code style and added doxygen tags

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Adrian Suciu 8:6e96c6b3c83f 1
Adrian Suciu 8:6e96c6b3c83f 2 /**
Adrian Suciu 8:6e96c6b3c83f 3 * @file config.h
Adrian Suciu 8:6e96c6b3c83f 4 * @brief Config file for driver diag tool
Adrian Suciu 8:6e96c6b3c83f 5 * @author Analog Devices Inc.
Adrian Suciu 8:6e96c6b3c83f 6 *
Adrian Suciu 8:6e96c6b3c83f 7 * For support please go to:
Adrian Suciu 8:6e96c6b3c83f 8 * Github: https://github.com/analogdevicesinc/mbed-adi
Adrian Suciu 8:6e96c6b3c83f 9 * Support: https://ez.analog.com/community/linux-device-drivers/microcontroller-no-os-drivers
Adrian Suciu 8:6e96c6b3c83f 10 * More: https://wiki.analog.com/resources/tools-software/mbed-drivers-all
Adrian Suciu 8:6e96c6b3c83f 11
Adrian Suciu 8:6e96c6b3c83f 12 ********************************************************************************
Adrian Suciu 8:6e96c6b3c83f 13 * Copyright 2016(c) Analog Devices, Inc.
Adrian Suciu 8:6e96c6b3c83f 14 *
Adrian Suciu 8:6e96c6b3c83f 15 * All rights reserved.
Adrian Suciu 8:6e96c6b3c83f 16 *
Adrian Suciu 8:6e96c6b3c83f 17 * Redistribution and use in source and binary forms, with or without
Adrian Suciu 8:6e96c6b3c83f 18 * modification, are permitted provided that the following conditions are met:
Adrian Suciu 8:6e96c6b3c83f 19 * - Redistributions of source code must retain the above copyright
Adrian Suciu 8:6e96c6b3c83f 20 * notice, this list of conditions and the following disclaimer.
Adrian Suciu 8:6e96c6b3c83f 21 * - Redistributions in binary form must reproduce the above copyright
Adrian Suciu 8:6e96c6b3c83f 22 * notice, this list of conditions and the following disclaimer in
Adrian Suciu 8:6e96c6b3c83f 23 * the documentation and/or other materials provided with the
Adrian Suciu 8:6e96c6b3c83f 24 * distribution.
Adrian Suciu 8:6e96c6b3c83f 25 * - Neither the name of Analog Devices, Inc. nor the names of its
Adrian Suciu 8:6e96c6b3c83f 26 * contributors may be used to endorse or promote products derived
Adrian Suciu 8:6e96c6b3c83f 27 * from this software without specific prior written permission.
Adrian Suciu 8:6e96c6b3c83f 28 * - The use of this software may or may not infringe the patent rights
Adrian Suciu 8:6e96c6b3c83f 29 * of one or more patent holders. This license does not release you
Adrian Suciu 8:6e96c6b3c83f 30 * from the requirement that you obtain separate licenses from these
Adrian Suciu 8:6e96c6b3c83f 31 * patent holders to use this software.
Adrian Suciu 8:6e96c6b3c83f 32 * - Use of the software either in source or binary form, must be run
Adrian Suciu 8:6e96c6b3c83f 33 * on or directly connected to an Analog Devices Inc. component.
Adrian Suciu 8:6e96c6b3c83f 34 *
Adrian Suciu 8:6e96c6b3c83f 35 * THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR
Adrian Suciu 8:6e96c6b3c83f 36 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,
Adrian Suciu 8:6e96c6b3c83f 37 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Adrian Suciu 8:6e96c6b3c83f 38 * IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT,
Adrian Suciu 8:6e96c6b3c83f 39 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Adrian Suciu 8:6e96c6b3c83f 40 * LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR
Adrian Suciu 8:6e96c6b3c83f 41 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Adrian Suciu 8:6e96c6b3c83f 42 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Adrian Suciu 8:6e96c6b3c83f 43 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Adrian Suciu 8:6e96c6b3c83f 44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Adrian Suciu 8:6e96c6b3c83f 45 *
Adrian Suciu 8:6e96c6b3c83f 46 ********************************************************************************/
Adrian Suciu 7:b62398a1d17a 47
Adrian Suciu 13:66c8e4ce4ff1 48 #define AD7791_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 49 #define CN0216_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 50 //#define AD7790_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 51 //#define AD5270_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 52 //#define CN0357_PRESENT
Adrian Suciu 7:b62398a1d17a 53 #define SPI_LOW_LEVEL
Adrian Suciu 7:b62398a1d17a 54
Adrian Suciu 13:66c8e4ce4ff1 55 #ifdef AD7791_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 56 #include "AD7791.h"
Adrian Suciu 13:66c8e4ce4ff1 57 #include "ad7791_diag.h"
Adrian Suciu 13:66c8e4ce4ff1 58 #endif
Adrian Suciu 13:66c8e4ce4ff1 59
Adrian Suciu 13:66c8e4ce4ff1 60 #ifdef CN0216_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 61 #include "CN0216.h"
Adrian Suciu 13:66c8e4ce4ff1 62 #include "cn0216_diag.h"
Adrian Suciu 13:66c8e4ce4ff1 63 #endif
Adrian Suciu 13:66c8e4ce4ff1 64
Adrian Suciu 7:b62398a1d17a 65 #ifdef AD7790_PRESENT
Adrian Suciu 7:b62398a1d17a 66 #include "AD7790.h"
Adrian Suciu 13:66c8e4ce4ff1 67 #include "ad7790_diag.h"
Adrian Suciu 7:b62398a1d17a 68 #endif
Adrian Suciu 7:b62398a1d17a 69
Adrian Suciu 7:b62398a1d17a 70 #ifdef AD5270_PRESENT
Adrian Suciu 11:2e67c719ce37 71 #include "AD5270.h"
Adrian Suciu 13:66c8e4ce4ff1 72 #include "ad5270_diag.h"
Adrian Suciu 7:b62398a1d17a 73 #endif
Adrian Suciu 7:b62398a1d17a 74
Adrian Suciu 7:b62398a1d17a 75 #ifdef CN0357_PRESENT
Adrian Suciu 11:2e67c719ce37 76 #include "CN0357.h"
Adrian Suciu 13:66c8e4ce4ff1 77 #include "cn0357_diag.h"
Adrian Suciu 7:b62398a1d17a 78 #endif
Adrian Suciu 7:b62398a1d17a 79
Adrian Suciu 7:b62398a1d17a 80 using namespace std;
Adrian Suciu 7:b62398a1d17a 81 //------------------------------------
Adrian Suciu 7:b62398a1d17a 82 // Hyperterminal configuration
Adrian Suciu 7:b62398a1d17a 83 // 9600 bauds, 8-bit data, no parity
Adrian Suciu 7:b62398a1d17a 84 //------------------------------------
Adrian Suciu 7:b62398a1d17a 85
Adrian Suciu 7:b62398a1d17a 86 #ifdef SPI_LOW_LEVEL
Adrian Suciu 7:b62398a1d17a 87 DigitalOut CSA_pin(D8); // cs adc
Adrian Suciu 7:b62398a1d17a 88 DigitalOut CSR_pin(D6); // cs rdac
Adrian Suciu 7:b62398a1d17a 89 SPI spibus(SPI_MOSI, SPI_MISO, SPI_SCK);
Adrian Suciu 7:b62398a1d17a 90 #endif
Adrian Suciu 7:b62398a1d17a 91
Adrian Suciu 13:66c8e4ce4ff1 92 #ifdef AD7791_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 93 AD7791 ad7791(1.2, D8);
Adrian Suciu 13:66c8e4ce4ff1 94 AD7791_Diag ad7791diag(ad7791);
Adrian Suciu 13:66c8e4ce4ff1 95 #endif
Adrian Suciu 13:66c8e4ce4ff1 96
Adrian Suciu 13:66c8e4ce4ff1 97 #ifdef CN0216_PRESENT
Adrian Suciu 13:66c8e4ce4ff1 98 CN0216 cn0216;
Adrian Suciu 13:66c8e4ce4ff1 99 CN0216_Diag cn0216diag(cn0216);
Adrian Suciu 13:66c8e4ce4ff1 100 #endif
Adrian Suciu 13:66c8e4ce4ff1 101
Adrian Suciu 13:66c8e4ce4ff1 102
Adrian Suciu 7:b62398a1d17a 103 #ifdef AD7790_PRESENT
Adrian Suciu 7:b62398a1d17a 104 AD7790 ad7790(1.2, D8);
Adrian Suciu 7:b62398a1d17a 105 AD7790_Diag ad7790diag(ad7790);
Adrian Suciu 7:b62398a1d17a 106 #endif
Adrian Suciu 7:b62398a1d17a 107
Adrian Suciu 7:b62398a1d17a 108 #ifdef AD5270_PRESENT
Adrian Suciu 7:b62398a1d17a 109 AD5270 ad5270(D6, 20000);
Adrian Suciu 7:b62398a1d17a 110 AD5270_Diag ad5270diag(ad5270);
Adrian Suciu 7:b62398a1d17a 111 #endif
Adrian Suciu 7:b62398a1d17a 112
Adrian Suciu 7:b62398a1d17a 113 #ifdef CN0357_PRESENT
Adrian Suciu 7:b62398a1d17a 114 CN0357 cn0357;
Adrian Suciu 7:b62398a1d17a 115 CN0357_Diag cn0357diag(cn0357);
Adrian Suciu 13:66c8e4ce4ff1 116 #endif