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@116:7337ed514891, 2016-09-22 (annotated)
- Committer:
- davidjhoward
- Date:
- Thu Sep 22 21:09:49 2016 +0000
- Revision:
- 116:7337ed514891
- Parent:
- 107:e900bd138bf3
- Child:
- 149:950c90425f7c
Write log to EEPROM
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 | bool CloudFileReceiver( std::string *recv_string, mDot *dot ); |
davidjhoward | 27:38205cebc3da | 11 | |
davidjhoward | 27:38205cebc3da | 12 | #endif |
davidjhoward | 27:38205cebc3da | 13 |