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/CloudFileReceiver.h@27:38205cebc3da, 2016-09-08 (annotated)
- Committer:
- davidjhoward
- Date:
- Thu Sep 08 18:39:29 2016 +0000
- Revision:
- 27:38205cebc3da
- Child:
- 31:4b1587034318
more cloud data handler stuff
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
davidjhoward | 27:38205cebc3da | 1 | #ifndef CLOUDFILERECEIVER_H |
davidjhoward | 27:38205cebc3da | 2 | #define CLOUDFILERECEIVER_H |
davidjhoward | 27:38205cebc3da | 3 | |
davidjhoward | 27:38205cebc3da | 4 | #include "mDot.h" |
davidjhoward | 27:38205cebc3da | 5 | #include <string> |
davidjhoward | 27:38205cebc3da | 6 | |
davidjhoward | 27:38205cebc3da | 7 | typedef char TASKNAME_STRING[64]; |
davidjhoward | 27:38205cebc3da | 8 | typedef char FILENAME_STRING[64]; |
davidjhoward | 27:38205cebc3da | 9 | |
davidjhoward | 27:38205cebc3da | 10 | #define SETPOINT_CONTROL_MTYPE 100 |
davidjhoward | 27:38205cebc3da | 11 | #define TIMER_CONTROL_MTYPE 101 |
davidjhoward | 27:38205cebc3da | 12 | |
davidjhoward | 27:38205cebc3da | 13 | bool CloudFileReceiver( std::string *recv_string, mDot *dot ); |
davidjhoward | 27:38205cebc3da | 14 | |
davidjhoward | 27:38205cebc3da | 15 | #endif |
davidjhoward | 27:38205cebc3da | 16 |