precision-converters-firmware
ad7134_iio.h
Go to the documentation of this file.
1 /***************************************************************************/
12 #ifndef AD7134_IIO_H_
13 #define AD7134_IIO_H_
14 
15 /******************************************************************************/
16 /***************************** Include Files **********************************/
17 /******************************************************************************/
18 
19 #include "iio.h"
20 #include "iio_types.h"
21 #include "ad713x.h"
22 
23 /******************************************************************************/
24 /********************** Macros and Constants Definition ***********************/
25 /******************************************************************************/
26 
27 /******************************************************************************/
28 /********************** Public/Extern Declarations ****************************/
29 /******************************************************************************/
30 
31 /* AD7134 global device instance for accessing device specific APIs */
32 extern struct ad713x_dev *p_ad7134_dev_inst;
33 
34 /* Init the IIO interface */
35 int32_t ad7134_iio_initialize(void);
36 
37 /* Run the IIO event handler */
38 void ad7134_iio_event_handler(void);
39 
40 #endif /* AD7134_IIO_H_ */
struct ad713x_dev * p_ad7134_dev_inst
Definition: ad7134_iio.c:58
int32_t ad7134_iio_initialize(void)
Initialize the AD7134 device for iio interface.
Definition: ad7134_iio.c:709
void ad7134_iio_event_handler(void)
Run the AD7134 IIO event handler.
Definition: ad7134_iio.c:827