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
Diff: src/ConfigurationHandler/ConfigurationHandler.h
- Revision:
- 156:44f87c5a83ae
- Parent:
- 97:5cf6ab71dcd0
- Child:
- 220:dbe21411f962
diff -r 62d9a1c5c25a -r 44f87c5a83ae src/ConfigurationHandler/ConfigurationHandler.h --- a/src/ConfigurationHandler/ConfigurationHandler.h Fri Sep 30 12:27:14 2016 +0000 +++ b/src/ConfigurationHandler/ConfigurationHandler.h Fri Sep 30 13:37:47 2016 +0000 @@ -15,12 +15,19 @@ void ConfigurationHandler(void const *args); void ConfigurationHandler_showControls(void); +// map["control_sp_1.json"] : setpointControl typedef map<string, SetpointControl*> StringSetpointMap; -typedef map<string, TimerControl*> StringTimerMap; + +// map["o_rly1"] : vector<TimerControl>.first +// vector<TimerControl>.second +// map["o_rly2"] : vector<TimerControl>.first +typedef map<string, vector<TimerControl*> > StringVectorTimerMap; + +//map["control_mn_1.json"] : manualControl typedef map<string, ManualControl*> StringManualMap; -extern StringSetpointMap setpointTable; -extern StringTimerMap timerTable; -extern StringManualMap manualTable; +extern StringSetpointMap setpointTable; +extern StringVectorTimerMap timerTable; +extern StringManualMap manualTable; #endif