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@97:5cf6ab71dcd0, 2016-09-21 (annotated)
- Committer:
- jmarkel44
- Date:
- Wed Sep 21 16:17:12 2016 +0000
- Revision:
- 97:5cf6ab71dcd0
- Parent:
- 46:4cb96ab2d1c8
- Child:
- 156:44f87c5a83ae
initial spin of manual controls ; included create-manual command; verifies the output task map of vectors data struct; ;
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 | 97:5cf6ab71dcd0 | 12 | #include "ManualControl.h" |
jmarkel44 | 46:4cb96ab2d1c8 | 13 | #include <map> |
jmarkel44 | 46:4cb96ab2d1c8 | 14 | |
jmarkel44 | 0:65cfa4873284 | 15 | void ConfigurationHandler(void const *args); |
jmarkel44 | 12:ea87887ca7ad | 16 | void ConfigurationHandler_showControls(void); |
jmarkel44 | 12:ea87887ca7ad | 17 | |
jmarkel44 | 46:4cb96ab2d1c8 | 18 | typedef map<string, SetpointControl*> StringSetpointMap; |
jmarkel44 | 46:4cb96ab2d1c8 | 19 | typedef map<string, TimerControl*> StringTimerMap; |
jmarkel44 | 97:5cf6ab71dcd0 | 20 | typedef map<string, ManualControl*> StringManualMap; |
jmarkel44 | 46:4cb96ab2d1c8 | 21 | |
jmarkel44 | 46:4cb96ab2d1c8 | 22 | extern StringSetpointMap setpointTable; |
jmarkel44 | 46:4cb96ab2d1c8 | 23 | extern StringTimerMap timerTable; |
jmarkel44 | 97:5cf6ab71dcd0 | 24 | extern StringManualMap manualTable; |
jmarkel44 | 0:65cfa4873284 | 25 | |
jmarkel44 | 0:65cfa4873284 | 26 | #endif |