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/Drivers/LogLocalApi.h@123:ce602c91a9c3, 2016-09-23 (annotated)
- Committer:
- davidjhoward
- Date:
- Fri Sep 23 15:25:06 2016 +0000
- Revision:
- 123:ce602c91a9c3
- Parent:
- 116:7337ed514891
- Child:
- 125:f11cc566d073
continue work on logging
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| davidjhoward | 116:7337ed514891 | 1 | #ifndef LOGLOCALAPI_H | 
| davidjhoward | 116:7337ed514891 | 2 | #define LOGLOCALAPI_H | 
| davidjhoward | 116:7337ed514891 | 3 | |
| davidjhoward | 116:7337ed514891 | 4 | #include <string.h> | 
| davidjhoward | 116:7337ed514891 | 5 | #include "eep.h" | 
| davidjhoward | 116:7337ed514891 | 6 | |
| davidjhoward | 123:ce602c91a9c3 | 7 | #define LOG_BYTES_PER_ENTRY 196 | 
| davidjhoward | 116:7337ed514891 | 8 | #define LOG_END_OF_STORAGE (EEP_NBYT - LOG_BYTES_PER_ENTRY) | 
| davidjhoward | 116:7337ed514891 | 9 | |
| davidjhoward | 116:7337ed514891 | 10 | void LogLocalApi( const char *logString ); | 
| davidjhoward | 116:7337ed514891 | 11 | void LogLocalApi_PushEntry( const char *logString ); | 
| davidjhoward | 123:ce602c91a9c3 | 12 | bool LogLocalApi_PopEntry( char *logString ); | 
| davidjhoward | 116:7337ed514891 | 13 | |
| davidjhoward | 116:7337ed514891 | 14 | #endif | 
| davidjhoward | 116:7337ed514891 | 15 | 
