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/CloudDataHandler/CloudDataHandler.h@134:f90154ff33ec, 2016-09-27 (annotated)
- Committer:
- davidjhoward
- Date:
- Tue Sep 27 15:36:37 2016 +0000
- Revision:
- 134:f90154ff33ec
- Parent:
- 125:f11cc566d073
- Child:
- 145:c1dfbb5eed0e
Add clould commands for setpoint control and manual control
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jmarkel44 | 20:653923c2f37a | 1 | #ifndef CLOUDDATAHANDLER_H |
jmarkel44 | 20:653923c2f37a | 2 | #define CLOUDDATAHANDLER_H |
jmarkel44 | 20:653923c2f37a | 3 | |
davidjhoward | 116:7337ed514891 | 4 | #define SETPOINT_CONTROL_MTYPE 100 |
davidjhoward | 116:7337ed514891 | 5 | #define TIMER_CONTROL_MTYPE 101 |
davidjhoward | 116:7337ed514891 | 6 | #define PID_CONTROL_MTYPE 102 |
davidjhoward | 134:f90154ff33ec | 7 | #define MAN_CONTROL_MTYPE 103 |
davidjhoward | 116:7337ed514891 | 8 | |
davidjhoward | 116:7337ed514891 | 9 | #define INPUT_CONFIG_MTYPE 200 |
davidjhoward | 116:7337ed514891 | 10 | #define OUTPUT_CONFIG_MTYPE 201 |
davidjhoward | 116:7337ed514891 | 11 | #define VIRTUAL_CONFIG_MTYPE 203 |
davidjhoward | 116:7337ed514891 | 12 | |
davidjhoward | 116:7337ed514891 | 13 | #define EVENT_LOG_MTYPE 300 |
davidjhoward | 125:f11cc566d073 | 14 | #define LIVE_DATA_MTYPE 400 |
davidjhoward | 68:dbe39d83eb98 | 15 | |
jmarkel44 | 20:653923c2f37a | 16 | void CloudDataHandler(void const *args); |
jmarkel44 | 20:653923c2f37a | 17 | |
jmarkel44 | 20:653923c2f37a | 18 | #endif |