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.
Diff: Logger.h
- Revision:
- 12:856286ad4cdc
- Parent:
- 9:951b6b0bfdf8
--- a/Logger.h Tue Mar 19 20:48:48 2019 +0000
+++ b/Logger.h Mon Mar 25 14:54:43 2019 +0000
@@ -1,7 +1,7 @@
#pragma once
#include <mbed.h>
-#include <ctime>
+#include <stdint.h>
class Logger {
public:
@@ -12,6 +12,8 @@
void log(const char * format, ...);
private:
+ // data members
+
+ // gives indication for timestamping
bool m_logTimestamp;
- Timer m_timer;
};