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.
ICE-Application/src/AnalyticsLogger/AnalyticsLogger.h@0:61364762ee0e, 2017-01-24 (annotated)
- Committer:
- jmarkel44
- Date:
- Tue Jan 24 19:05:33 2017 +0000
- Revision:
- 0:61364762ee0e
Port from IAR to Nucleo-F412 board
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jmarkel44 | 0:61364762ee0e | 1 | /****************************************************************************** |
jmarkel44 | 0:61364762ee0e | 2 | * |
jmarkel44 | 0:61364762ee0e | 3 | * File: AnalyticsLogger.h |
jmarkel44 | 0:61364762ee0e | 4 | * Desciption: interface for the ICE Analytics Logger |
jmarkel44 | 0:61364762ee0e | 5 | * |
jmarkel44 | 0:61364762ee0e | 6 | *****************************************************************************/ |
jmarkel44 | 0:61364762ee0e | 7 | #ifndef ANALYTICS_LOGGER_H |
jmarkel44 | 0:61364762ee0e | 8 | #define ANALYTICS_LOGGER_H |
jmarkel44 | 0:61364762ee0e | 9 | |
jmarkel44 | 0:61364762ee0e | 10 | #ifdef __cplusplus |
jmarkel44 | 0:61364762ee0e | 11 | #define EXTERNC extern "C" |
jmarkel44 | 0:61364762ee0e | 12 | #else |
jmarkel44 | 0:61364762ee0e | 13 | #define EXTERNC |
jmarkel44 | 0:61364762ee0e | 14 | #endif |
jmarkel44 | 0:61364762ee0e | 15 | |
jmarkel44 | 0:61364762ee0e | 16 | EXTERNC void AnalyticsLogger ( void const *args ); |
jmarkel44 | 0:61364762ee0e | 17 | EXTERNC bool AnalyticsLoggerApi( std::string *log_string ); |
jmarkel44 | 0:61364762ee0e | 18 | |
jmarkel44 | 0:61364762ee0e | 19 | #undef EXTERNC |
jmarkel44 | 0:61364762ee0e | 20 | |
jmarkel44 | 0:61364762ee0e | 21 | #endif |