Log

Dependents:   oldheating gps motorhome heating

Revision:
19:14376c221aec
Parent:
17:7acb89d71f48
--- 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);