precision-converters-firmware
ad738x_iio.h
Go to the documentation of this file.
1 /***************************************************************************/
13 #ifndef AD738X_IIO_H_
14 #define AD738X_IIO_H_
15 
16 /******************************************************************************/
17 /***************************** Include Files **********************************/
18 /******************************************************************************/
19 
20 #include <stdint.h>
21 #include "ad738x.h"
22 
23 /******************************************************************************/
24 /********************** Macros and Constants Definition ***********************/
25 /******************************************************************************/
26 
27 /******************************************************************************/
28 /********************** Public/Extern Declarations ****************************/
29 /******************************************************************************/
30 
31 int32_t ad738x_iio_initialize(void);
32 void ad738x_iio_event_handler(void);
33 
34 extern struct ad738x_dev *ad738x_dev_inst;
35 
36 #endif /* AD738X_IIO_H_ */
void ad738x_iio_event_handler(void)
Run the AD738x IIO event handler.
Definition: ad738x_iio.c:558
struct ad738x_dev * ad738x_dev_inst
Definition: ad738x_iio.c:97
int32_t ad738x_iio_initialize(void)
Initialize the IIO interface for AD738x IIO device.
Definition: ad738x_iio.c:461