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/Drivers/LogLocalApi.cpp@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 | #include <stdio.h> |
jmarkel44 | 0:61364762ee0e | 2 | |
jmarkel44 | 0:61364762ee0e | 3 | #include "LogLocalApi.h" |
jmarkel44 | 0:61364762ee0e | 4 | #ifdef MDOT_ICE |
jmarkel44 | 0:61364762ee0e | 5 | #include "MTSLog.h" |
jmarkel44 | 0:61364762ee0e | 6 | #endif |
jmarkel44 | 0:61364762ee0e | 7 | #include "global.h" |
jmarkel44 | 0:61364762ee0e | 8 | |
jmarkel44 | 0:61364762ee0e | 9 | #define WAIT_TIME 5 |
jmarkel44 | 0:61364762ee0e | 10 | |
jmarkel44 | 0:61364762ee0e | 11 | |
jmarkel44 | 0:61364762ee0e | 12 | int LocalLogEntries = 0; |
jmarkel44 | 0:61364762ee0e | 13 | |
jmarkel44 | 0:61364762ee0e | 14 | void LogLocalApi( const char *logString ) |
jmarkel44 | 0:61364762ee0e | 15 | { |
jmarkel44 | 0:61364762ee0e | 16 | LogLocalApi_PushEntry( logString ); |
jmarkel44 | 0:61364762ee0e | 17 | } |
jmarkel44 | 0:61364762ee0e | 18 | |
jmarkel44 | 0:61364762ee0e | 19 | void LogLocalApi_PushEntry( const char *logString ) |
jmarkel44 | 0:61364762ee0e | 20 | { |
jmarkel44 | 0:61364762ee0e | 21 | |
jmarkel44 | 0:61364762ee0e | 22 | } |
jmarkel44 | 0:61364762ee0e | 23 | |
jmarkel44 | 0:61364762ee0e | 24 | bool LogLocalApi_PopEntry( char *logString ) |
jmarkel44 | 0:61364762ee0e | 25 | { |
jmarkel44 | 0:61364762ee0e | 26 | return true; |
jmarkel44 | 0:61364762ee0e | 27 | } |
jmarkel44 | 0:61364762ee0e | 28 |