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/ConfigurationHandler.h@46:4cb96ab2d1c8, 2016-09-13 (annotated)
- Committer:
- jmarkel44
- Date:
- Tue Sep 13 11:59:34 2016 +0000
- Revision:
- 46:4cb96ab2d1c8
- Parent:
- 12:ea87887ca7ad
- Child:
- 97:5cf6ab71dcd0
commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jmarkel44 | 0:65cfa4873284 | 1 | /****************************************************************************** |
jmarkel44 | 0:65cfa4873284 | 2 | * |
jmarkel44 | 0:65cfa4873284 | 3 | * File: ConfigurationHandler.h |
jmarkel44 | 0:65cfa4873284 | 4 | * Desciption: interface file for the ICE Configuration Handler |
jmarkel44 | 0:65cfa4873284 | 5 | * |
jmarkel44 | 0:65cfa4873284 | 6 | *****************************************************************************/ |
jmarkel44 | 0:65cfa4873284 | 7 | #ifndef CONFIGURATION_HANDLER_H |
jmarkel44 | 0:65cfa4873284 | 8 | #define CONFIGURATION_HANDLER_H |
jmarkel44 | 0:65cfa4873284 | 9 | |
jmarkel44 | 46:4cb96ab2d1c8 | 10 | #include "SetpointControl.h" |
jmarkel44 | 46:4cb96ab2d1c8 | 11 | #include "TimerControl.h" |
jmarkel44 | 46:4cb96ab2d1c8 | 12 | #include <map> |
jmarkel44 | 46:4cb96ab2d1c8 | 13 | |
jmarkel44 | 0:65cfa4873284 | 14 | void ConfigurationHandler(void const *args); |
jmarkel44 | 12:ea87887ca7ad | 15 | void ConfigurationHandler_showControls(void); |
jmarkel44 | 12:ea87887ca7ad | 16 | |
jmarkel44 | 46:4cb96ab2d1c8 | 17 | typedef map<string, SetpointControl*> StringSetpointMap; |
jmarkel44 | 46:4cb96ab2d1c8 | 18 | typedef map<string, TimerControl*> StringTimerMap; |
jmarkel44 | 46:4cb96ab2d1c8 | 19 | //typedef map<string, ManualControl*> StringManualMap; |
jmarkel44 | 46:4cb96ab2d1c8 | 20 | |
jmarkel44 | 46:4cb96ab2d1c8 | 21 | extern StringSetpointMap setpointTable; |
jmarkel44 | 46:4cb96ab2d1c8 | 22 | extern StringTimerMap timerTable; |
jmarkel44 | 46:4cb96ab2d1c8 | 23 | //extern StringManualMap manualTable; |
jmarkel44 | 0:65cfa4873284 | 24 | |
jmarkel44 | 0:65cfa4873284 | 25 | #endif |