Analog Devices / Mbed OS EVAL-AD4110

Dependencies:   tempsensors sdp_k1_sdram

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ad4110_iio.h Source File

ad4110_iio.h

Go to the documentation of this file.
00001 /***************************************************************************//**
00002 *   @file   ad4110_iio.h
00003 *   @brief  Header file of AD4110-1 IIO interfaces
00004 ********************************************************************************
00005 * Copyright (c) 2022 Analog Devices, Inc.
00006 * All rights reserved.
00007 *
00008 * This software is proprietary to Analog Devices, Inc. and its licensors.
00009 * By using this software you agree to the terms of the associated
00010 * Analog Devices Software License Agreement.
00011 *******************************************************************************/
00012 #ifndef AD4110_IIO_H_
00013 #define AD4110_IIO_H_
00014 
00015 /******************************************************************************/
00016 /***************************** Include Files **********************************/
00017 /******************************************************************************/
00018 
00019 #include <stdint.h>
00020 #include "iio.h"
00021 #include "ad4110.h"
00022 
00023 /******************************************************************************/
00024 /************************ Macros/Constants ************************************/
00025 /******************************************************************************/
00026 
00027 /* CJC has been incorporated on channel 1 (LV Channel) */
00028 #define CJC_CHANNEL 1
00029 #define HV_CHANNEL  0
00030 
00031 /******************************************************************************/
00032 /************************ Public Declarations *********************************/
00033 /******************************************************************************/
00034 
00035 extern struct ad4110_dev *ad4110_dev_inst;
00036 int32_t ad4110_iio_initialize(void);
00037 void ad4110_iio_event_handler(void);
00038 
00039 #endif // AD4110_IIO_H_
00040