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@0:c643d398cdb6, 2018-01-11 (annotated)
- Committer:
- marcbax
- Date:
- Thu Jan 11 13:42:27 2018 +0000
- Revision:
- 0:c643d398cdb6
Marc Bax version 180111. It hangs on the WritePartImage in the RedrawAlphabet routine in hangman.cpp. Within that call it does execute Ypos(), but not Xpos().
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 |