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

examples/drvdiag/driver_wrapper/cn0357_diag.h

Committer:
Adrian Suciu
Date:
2016-04-20
Revision:
7:b62398a1d17a
Child:
8:6e96c6b3c83f

File content as of revision 7:b62398a1d17a:


#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_ */