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/ManualControl.cpp
- Committer:
- jmarkel44
- Date:
- 2016-09-21
- Revision:
- 96:807f04bd5256
- Child:
- 97:5cf6ab71dcd0
File content as of revision 96:807f04bd5256:
/****************************************************************************** * * File: ManualControl.cpp * Desciption: ICE Manual Control Class implementation * *****************************************************************************/ #include "ManualControl.h" #include "mDot.h" #include "MbedJSONValue.h" #include "ModbusMasterApi.h" #include "global.h" #include <string> extern mDot *GLOBAL_mdot; // Method: load // Description: open the configuration file and assign data to the // setpoint control object // // @param controlFile -> name of the control file // @return true if data is assigned; false on error bool ManualControl::load(string _controlFile) { return true; } // Method: start // Description: start the manual control // // @param none // @return none int ManualControl::start(void) { return 0; } // Method: update // Description: // // @param none // @return none int ManualControl::update(void) { return 0; } // Method: unregisterControl // Description: unregister this control with the output master // // @param none // @return none int ManualControl::unregisterControl(void) { return 0; } void ManualControl::display(void) { }