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@107:e900bd138bf3, 2016-09-22 (annotated)
- Committer:
- davidjhoward
- Date:
- Thu Sep 22 16:10:01 2016 +0000
- Revision:
- 107:e900bd138bf3
- Parent:
- 31:4b1587034318
- Child:
- 116:7337ed514891
more logging 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 | 31:4b1587034318 | 12 | #define PID_CONTROL_MTYPE 102 |
davidjhoward | 31:4b1587034318 | 13 | |
davidjhoward | 31:4b1587034318 | 14 | #define INPUT_CONFIG_MTYPE 200 |
davidjhoward | 31:4b1587034318 | 15 | #define OUTPUT_CONFIG_MTYPE 201 |
davidjhoward | 31:4b1587034318 | 16 | #define VIRTUAL_CONFIG_MTYPE 203 |
davidjhoward | 27:38205cebc3da | 17 | |
davidjhoward | 107:e900bd138bf3 | 18 | #define EVENT_LOG_MTYPE 300 |
davidjhoward | 107:e900bd138bf3 | 19 | |
davidjhoward | 27:38205cebc3da | 20 | bool CloudFileReceiver( std::string *recv_string, mDot *dot ); |
davidjhoward | 27:38205cebc3da | 21 | |
davidjhoward | 27:38205cebc3da | 22 | #endif |
davidjhoward | 27:38205cebc3da | 23 |