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/CompositeControl.cpp@167:377142be7300, 2016-10-03 (annotated)
- Committer:
- jmarkel44
- Date:
- Mon Oct 03 18:09:50 2016 +0000
- Revision:
- 167:377142be7300
- Parent:
- 164:7cecd731882e
- Child:
- 220:dbe21411f962
Stable load?
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| jmarkel44 | 164:7cecd731882e | 1 | /****************************************************************************** |
| jmarkel44 | 164:7cecd731882e | 2 | * |
| jmarkel44 | 164:7cecd731882e | 3 | * File: CompositeControl.cpp |
| jmarkel44 | 164:7cecd731882e | 4 | * Desciption: ICE Composite Control Class implementation |
| jmarkel44 | 164:7cecd731882e | 5 | * |
| jmarkel44 | 164:7cecd731882e | 6 | *****************************************************************************/ |
| jmarkel44 | 164:7cecd731882e | 7 | #include "CompositeControl.h" |
| jmarkel44 | 164:7cecd731882e | 8 | #include "mDot.h" |
| jmarkel44 | 164:7cecd731882e | 9 | #include "MbedJSONValue.h" |
| jmarkel44 | 164:7cecd731882e | 10 | #include "ModbusMasterApi.h" |
| jmarkel44 | 164:7cecd731882e | 11 | #include "global.h" |
| jmarkel44 | 164:7cecd731882e | 12 | #include <string> |
| jmarkel44 | 164:7cecd731882e | 13 | |
| jmarkel44 | 164:7cecd731882e | 14 | extern mDot *GLOBAL_mdot; |
| jmarkel44 | 164:7cecd731882e | 15 | |
| jmarkel44 | 164:7cecd731882e | 16 | bool CompositeControl::load(std::string controlFile) |
| jmarkel44 | 164:7cecd731882e | 17 | { |
| jmarkel44 | 164:7cecd731882e | 18 | return true; |
| jmarkel44 | 164:7cecd731882e | 19 | } |
| jmarkel44 | 164:7cecd731882e | 20 | |
| jmarkel44 | 164:7cecd731882e | 21 | // unregister the control with the output task |
| jmarkel44 | 164:7cecd731882e | 22 | void CompositeControl::unregisterControl(void) |
| jmarkel44 | 164:7cecd731882e | 23 | { |
| jmarkel44 | 164:7cecd731882e | 24 | } |
