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: SDFileSystem app epson mbed msp430 pl tests
log.h@1:5874c1a074a7, 2018-01-11 (annotated)
- Committer:
- marcbax
- Date:
- Thu Jan 11 14:12:00 2018 +0000
- Revision:
- 1:5874c1a074a7
- Parent:
- 0:c643d398cdb6
Version 180111a with error as reported to Mark Symonds
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
marcbax | 0:c643d398cdb6 | 1 | // |
marcbax | 0:c643d398cdb6 | 2 | // Filename: log.h |
marcbax | 0:c643d398cdb6 | 3 | // |
marcbax | 0:c643d398cdb6 | 4 | // Diagnostic logger. |
marcbax | 0:c643d398cdb6 | 5 | // |
marcbax | 0:c643d398cdb6 | 6 | |
marcbax | 0:c643d398cdb6 | 7 | #ifndef LOG_H |
marcbax | 0:c643d398cdb6 | 8 | #define LOG_H |
marcbax | 0:c643d398cdb6 | 9 | |
marcbax | 0:c643d398cdb6 | 10 | #include <string> |
marcbax | 0:c643d398cdb6 | 11 | |
marcbax | 0:c643d398cdb6 | 12 | extern void Log(const std::string &data); |
marcbax | 0:c643d398cdb6 | 13 | |
marcbax | 0:c643d398cdb6 | 14 | #endif // LOG_H |