AdiSense1000_V21 MBED API

Fork of AdiSense1000 by PoC_Team

Committer:
kevin1990
Date:
Thu May 17 10:34:45 2018 +0100
Revision:
28:4eb837cd71df
Child:
31:de49744b57a6
Adding host library and example code for v1.3 release

Who changed what in which revision?

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