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.cpp
- Committer:
- jmarkel44
- Date:
- 2016-09-07
- Revision:
- 14:cc916fa8dd11
- Parent:
- 13:c80c283f9db2
- Child:
- 17:dfa2c53b3f38
- Child:
- 19:9bc8fabeddfa
File content as of revision 14:cc916fa8dd11:
/****************************************************************************** * * File: SetpointControl.c * Desciption: ICE Timer Control Class implementation * *****************************************************************************/ #include "SetpointControl.h" #include "mDot.h" extern mDot *GLOBAL_mdot; /***************************************************************************** * Function: SetpointControl() * Description: Setpoint control constructor * * @param filename (unused) * @return none *****************************************************************************/ SetpointControl::SetpointControl(string filename) : controlFile(filename) { // attempt to open the control file (established by the data handlers) printf("\r%s: opening control file %s\n", __func__, controlFile.c_str()); mDot::mdot_file file = GLOBAL_mdot->openUserFile(controlFile.c_str(), mDot::FM_RDONLY); printf("\r %s: file.fd = %d\n", __func__, file.fd); // use the jSON parser to extract the data // close the file GLOBAL_mdot->closeUserFile(file); }