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.
Dependents: oldheating gps motorhome heating
Diff: log.h
- Revision:
- 19:14376c221aec
- Parent:
- 17:7acb89d71f48
diff -r 617791ed3d8e -r 14376c221aec log.h --- a/log.h Thu Jul 25 21:15:03 2019 +0000 +++ b/log.h Tue Aug 20 14:50:12 2019 +0000 @@ -1,6 +1,7 @@ #include <stdarg.h> #include <time.h> #include <stdbool.h> +#include <stdint.h> extern bool LogUart; extern void LogInit(void (*tmFunction)(struct tm* ptm), int baud); //Set baud to 0 if no serial @@ -21,4 +22,4 @@ extern void LogNibbleAsHex(int nibble); extern void LogByteAsHex(int value); -extern void LogBytesAsHex(char* value, int size); +extern void LogBytesAsHex(const uint8_t* bytes, int size);