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/CN0216_Diag.h

Committer:
Adrian Suciu
Date:
2016-05-18
Revision:
24:dae7123d432a

File content as of revision 24:dae7123d432a:


#ifndef CN0216_DIAG_H_
#define CN0216_DIAG_H_
#include "CN0216.h"

class CN0216_Diag
{
public:
    CN0216_Diag(CN0216& cn);

    void init(void);
    void calibrate(void);
    void read_weight(void);


private:
    CN0216& dut;
};


#endif /* CN0216_DIAG_H_ */