MWARE-1930 fixed

Committer:
ADIJake
Date:
Mon Apr 01 11:09:52 2019 +0000
Revision:
0:85855ecd3257
Initial Commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ADIJake 0:85855ecd3257 1 /*!
ADIJake 0:85855ecd3257 2 ******************************************************************************
ADIJake 0:85855ecd3257 3 * @file: sensor0_diode_config.cpp
ADIJake 0:85855ecd3257 4 * @brief:
ADIJake 0:85855ecd3257 5 *-----------------------------------------------------------------------------
ADIJake 0:85855ecd3257 6 *
ADIJake 0:85855ecd3257 7 Copyright 2017 (c) Analog Devices, Inc.
ADIJake 0:85855ecd3257 8
ADIJake 0:85855ecd3257 9 All rights reserved.
ADIJake 0:85855ecd3257 10
ADIJake 0:85855ecd3257 11 Redistribution and use in source and binary forms, with or without
ADIJake 0:85855ecd3257 12 modification, are permitted provided that the following conditions are met:
ADIJake 0:85855ecd3257 13 - Redistributions of source code must retain the above copyright
ADIJake 0:85855ecd3257 14 notice, this list of conditions and the following disclaimer.
ADIJake 0:85855ecd3257 15 - Redistributions in binary form must reproduce the above copyright
ADIJake 0:85855ecd3257 16 notice, this list of conditions and the following disclaimer in
ADIJake 0:85855ecd3257 17 the documentation and/or other materials provided with the
ADIJake 0:85855ecd3257 18 distribution.
ADIJake 0:85855ecd3257 19 - Neither the name of Analog Devices, Inc. nor the names of its
ADIJake 0:85855ecd3257 20 contributors may be used to endorse or promote products derived
ADIJake 0:85855ecd3257 21 from this software without specific prior written permission.
ADIJake 0:85855ecd3257 22 - The use of this software may or may not infringe the patent rights
ADIJake 0:85855ecd3257 23 of one or more patent holders. This license does not release you
ADIJake 0:85855ecd3257 24 from the requirement that you obtain separate licenses from these
ADIJake 0:85855ecd3257 25 patent holders to use this software.
ADIJake 0:85855ecd3257 26 - Use of the software either in source or binary form, must be run
ADIJake 0:85855ecd3257 27 on or directly connected to an Analog Devices Inc. component.
ADIJake 0:85855ecd3257 28
ADIJake 0:85855ecd3257 29 THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR
ADIJake 0:85855ecd3257 30 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,
ADIJake 0:85855ecd3257 31 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
ADIJake 0:85855ecd3257 32 IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT,
ADIJake 0:85855ecd3257 33 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
ADIJake 0:85855ecd3257 34 LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR
ADIJake 0:85855ecd3257 35 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
ADIJake 0:85855ecd3257 36 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
ADIJake 0:85855ecd3257 37 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
ADIJake 0:85855ecd3257 38 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ADIJake 0:85855ecd3257 39 *
ADIJake 0:85855ecd3257 40 *****************************************************************************/
ADIJake 0:85855ecd3257 41
ADIJake 0:85855ecd3257 42 #include "adi_sense_config_types.h"
ADIJake 0:85855ecd3257 43
ADIJake 0:85855ecd3257 44 ADI_SENSE_CONFIG sensor1_diode_3c_config = {
ADIJake 0:85855ecd3257 45 .versionId = { .major = 1, .minor = 4 },
ADIJake 0:85855ecd3257 46 .productId = ADI_SENSE_PRODUCT_ID_ADSNS1000,
ADIJake 0:85855ecd3257 47 .adisense1000 = {
ADIJake 0:85855ecd3257 48 .power = {
ADIJake 0:85855ecd3257 49 .powerMode = ADI_SENSE_1000_POWER_MODE_FULL,
ADIJake 0:85855ecd3257 50 },
ADIJake 0:85855ecd3257 51 .measurement = {
ADIJake 0:85855ecd3257 52 .operatingMode = ADI_SENSE_1000_OPERATING_MODE_SINGLECYCLE,
ADIJake 0:85855ecd3257 53 .dataReadyMode = ADI_SENSE_1000_DATAREADY_PER_CYCLE,
ADIJake 0:85855ecd3257 54 },
ADIJake 0:85855ecd3257 55 .channels = {
ADIJake 0:85855ecd3257 56 [ADI_SENSE_1000_CHANNEL_ID_SENSOR_1] = {
ADIJake 0:85855ecd3257 57 .enableChannel = true,
ADIJake 0:85855ecd3257 58 .disablePublishing = false,
ADIJake 0:85855ecd3257 59 .compensationChannel = ADI_SENSE_1000_CHANNEL_ID_NONE,
ADIJake 0:85855ecd3257 60 .measurementUnit = ADI_SENSE_1000_MEASUREMENT_UNIT_CELSIUS,
ADIJake 0:85855ecd3257 61 .measurementsPerCycle = 10,
ADIJake 0:85855ecd3257 62 .extraSettlingTime = 0,
ADIJake 0:85855ecd3257 63 .sensorParameter = 1.003,
ADIJake 0:85855ecd3257 64 .adcChannelConfig = {
ADIJake 0:85855ecd3257 65 .sensor = ADI_SENSE_1000_ADC_SENSOR_DIODE_3C_TYPEA_DEF_L1,
ADIJake 0:85855ecd3257 66 .gain = ADI_SENSE_1000_ADC_GAIN_2X,
ADIJake 0:85855ecd3257 67 .current = {
ADIJake 0:85855ecd3257 68 .outputLevel = ADI_SENSE_1000_ADC_EXC_CURRENT_50uA,
ADIJake 0:85855ecd3257 69 .diodeRatio = ADI_SENSE_1000_ADC_EXC_CURRENT_IOUT_DIODE_DEFAULT,
ADIJake 0:85855ecd3257 70 },
ADIJake 0:85855ecd3257 71 .filter = {
ADIJake 0:85855ecd3257 72 .type = ADI_SENSE_1000_ADC_FILTER_FIR_25SPS,
ADIJake 0:85855ecd3257 73 },
ADIJake 0:85855ecd3257 74 .reference = {
ADIJake 0:85855ecd3257 75 .type = ADI_SENSE_1000_ADC_REFERENCE_VOLTAGE_INTERNAL,
ADIJake 0:85855ecd3257 76 .disableBuffer = true,
ADIJake 0:85855ecd3257 77 },
ADIJake 0:85855ecd3257 78 .enableVbias = false,
ADIJake 0:85855ecd3257 79 },
ADIJake 0:85855ecd3257 80 },
ADIJake 0:85855ecd3257 81 },
ADIJake 0:85855ecd3257 82 },
ADIJake 0:85855ecd3257 83 };
ADIJake 0:85855ecd3257 84