(Working) Code to interface 3 LoadCells to ADISense1000 and display values using the Labview code.

Fork of 4Bridge_ADISense1000_Example_copy by CAC_smartcushion

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers adi_sense_config_types.h Source File

adi_sense_config_types.h

Go to the documentation of this file.
00001 /*!
00002  ******************************************************************************
00003  * @file:   adi_sense_config_types.h
00004  * @brief:  Type definitions for ADI Sense API.
00005  *-----------------------------------------------------------------------------
00006  */
00007 
00008 /*
00009 Copyright (c) 2017 Analog Devices, Inc.
00010 
00011 All rights reserved.
00012 
00013 Redistribution and use in source and binary forms, with or without modification,
00014 are permitted provided that the following conditions are met:
00015   - Redistributions of source code must retain the above copyright notice,
00016     this list of conditions and the following disclaimer.
00017   - Redistributions in binary form must reproduce the above copyright notice,
00018     this list of conditions and the following disclaimer in the documentation
00019     and/or other materials provided with the distribution.
00020   - Modified versions of the software must be conspicuously marked as such.
00021   - This software is licensed solely and exclusively for use with processors
00022     manufactured by or for Analog Devices, Inc.
00023   - This software may not be combined or merged with other code in any manner
00024     that would cause the software to become subject to terms and conditions
00025     which differ from those listed here.
00026   - Neither the name of Analog Devices, Inc. nor the names of its
00027     contributors may be used to endorse or promote products derived
00028     from this software without specific prior written permission.
00029   - The use of this software may or may not infringe the patent rights of one
00030     or more patent holders.  This license does not release you from the
00031     requirement that you obtain separate licenses from these patent holders
00032     to use this software.
00033 
00034 THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. AND CONTRIBUTORS "AS IS" AND ANY
00035 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,
00036 TITLE, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
00037 NO EVENT SHALL ANALOG DEVICES, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
00038 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES
00039 (INCLUDING, BUT NOT LIMITED TO, DAMAGES ARISING OUT OF CLAIMS OF INTELLECTUAL
00040 PROPERTY RIGHTS INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
00041 OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
00042 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00043 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
00044 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00045 */
00046 
00047 #ifndef __ADI_SENSE_CONFIG_TYPES_H__
00048 #define __ADI_SENSE_CONFIG_TYPES_H__
00049 
00050 #include "adi_sense_platform.h"
00051 #include "adi_sense_1000/adi_sense_1000_config.h"
00052 
00053 /*! @addtogroup ADI_Sense_Api ADI Sense Host Library API
00054  *  @{
00055  */
00056 
00057 #ifdef __cplusplus
00058 extern "C" {
00059 #endif
00060 
00061 /*! A list of supported product identifiers */
00062 typedef enum {
00063     ADI_SENSE_PRODUCT_ID_1000  = 0x0020,
00064     /*!< ADI Sense 1000 */
00065 } ADI_SENSE_PRODUCT_ID ;
00066 
00067 /*! ADI Sense Configuration schema version */
00068 typedef struct {
00069     uint8_t major ; /*!< Major version number */
00070     uint8_t minor ; /*!< Minor version number */
00071 } ADI_SENSE_CONFIG_VERSION_ID ;
00072 
00073 /*! ADI Sense UUID string length */
00074 #define ADI_SENSE_UUID_LEN 36
00075 
00076 /*! ADI Sense global configuration details */
00077 typedef struct {
00078     const char                  configUuid[ADI_SENSE_UUID_LEN];
00079     /*!< Optional unique identifier for this configuration */
00080     ADI_SENSE_CONFIG_VERSION_ID  versionId;
00081     /*!< Identifies the schema version for this configuration */
00082     ADI_SENSE_PRODUCT_ID         productId;
00083     /*!< Identify the product type for which this configuration is valid */
00084     union
00085     {
00086         ADI_SENSE_1000_CONFIG    adisense1000;
00087         /*!< ADI Sense 1000 product configuration parameters.  Used if productId
00088          *   selected is ADI_SENSE_PRODUCT_ID_1000 */
00089     };
00090     /*!< Product-specific configuration parameters, selected based on productId.
00091      *   @note Other product variants may be added here in the future */
00092 } ADI_SENSE_CONFIG ;
00093 
00094 #ifdef __cplusplus
00095 }
00096 #endif
00097 
00098 /*!
00099  * @}
00100  */
00101 
00102 #endif /* __ADI_SENSE_CONFIG_TYPES_H__ */
00103