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: NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed
Fork of ICE by
src/ConfigurationHandler/Controls/SetpointControl.h
- Committer:
- jmarkel44
- Date:
- 2016-09-07
- Revision:
- 12:ea87887ca7ad
- Parent:
- 5:5e77a1db4d45
- Child:
- 13:c80c283f9db2
File content as of revision 12:ea87887ca7ad:
/****************************************************************************** * * File: SetpointControl.h * Desciption: ICE Timer Control Class * *****************************************************************************/ #ifndef SETPOINTCONTROL_H #define SETPOINTCONTROL_H #include <string> class SetpointControl { private: string controlFile; // name of the control file unsigned int interval; // interval at which we run unsigned int priority; // priority at which we run public: SetpointControl(string filename) : controlFile(filename) { printf("\r%s instantiated with control file %s\n", __func__, controlFile.c_str()); } ~SetpointControl() { printf("\r%s destructor invoked\n", __func__); } string getControlFile(void) { return controlFile; } }; #endif