Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DAQ mbed-rtos mbed
DAQ/DummyDAQ.h
- Committer:
- leysenkobe
- Date:
- 2014-04-24
- Revision:
- 1:fa51edf89e71
- Parent:
- 0:6ee88b4152dc
File content as of revision 1:fa51edf89e71:
#ifndef DUMMYDAQ_H #define DUMMYDAQ_H #include "Measurement.h" class DummyDAQ { public: DummyDAQ(void); ~DummyDAQ(void); //GETTERS Measurement* measure(void); int getChannelGain(int channel); bool ChannelEnabled(int channel); bool Initialized(void); //SETTERS void setChannelGain(int channel,int gain); void enableChannel(int channel); void disableChannel(int channel); void setInitialized(bool init); }; #endif