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
Diff: examples/drvdiag/driver_wrapper/cn0357_diag.h
- Revision:
- 7:b62398a1d17a
- Child:
- 8:6e96c6b3c83f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/drvdiag/driver_wrapper/cn0357_diag.h Wed Apr 20 16:35:44 2016 +0300 @@ -0,0 +1,21 @@ + +#ifndef CN0357_DIAG_H_ +#define CN0357_DIAG_H_ +#include "CN0357.h" + +class CN0357_Diag +{ +public: + CN0357_Diag(CN0357& cn); + + void set_RDAC(void); + void read_ppm(void); + void set_sensor_param(void); + + +private: + CN0357& dut; +}; + + +#endif /* AD5270_DIAG_H_ */