A collection of Analog Devices drivers for the mbed platform

For additional information check out the mbed page of the Analog Devices wiki: https://wiki.analog.com/resources/tools-software/mbed-drivers-all

Revision:
7:b62398a1d17a
Child:
8:6e96c6b3c83f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/drvdiag/driver_wrapper/ad7790_diag.h	Wed Apr 20 16:35:44 2016 +0300
@@ -0,0 +1,42 @@
+/*
+ * ad7790.h
+ *
+ *  Created on: Apr 15, 2016
+ *      Author: asuciu
+ */
+
+#ifndef AD7790_DIAG_H_
+#define AD7790_DIAG_H_
+
+#include "AD7790.h"
+
+class AD7790_Diag
+{
+
+public:
+    AD7790_Diag(AD7790& ad);
+    void init(void);
+    void reset(void);
+    void write_mode(void);
+    void write_filter(void);
+    void read_mode(void);
+    void read_filter(void);
+    void read_data(void);
+    void read_status(void);
+    void read_u16(void);
+    void read_voltage(void);
+    void set_continous_mode(void);
+    void set_reference_voltage(void);
+    void set_channel(void);
+
+private:
+    AD7790& dut;
+};
+
+/*
+
+*/
+
+
+
+#endif /* AD7790_DIAG_H_ */