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-04-29
Revision:
13:66c8e4ce4ff1

File content as of revision 13:66c8e4ce4ff1:


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