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
Revision 1:4d81afe3859e, committed 2017-02-01
- Comitter:
- andrewboyson
- Date:
- Wed Feb 01 07:41:22 2017 +0000
- Parent:
- 0:9907e344c82a
- Child:
- 2:ee4ec2d72525
- Commit message:
- Minor tweaks
Changed in this revision
| log.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/log.cpp Mon Dec 12 15:44:51 2016 +0000
+++ b/log.cpp Wed Feb 01 07:41:22 2017 +0000
@@ -1,5 +1,5 @@
#include "mbed.h"
-#include "rtc.h"
+#include "time.h"
#define LOG_FILE "/local/log.txt"
LocalFileSystem local("local");
@@ -128,7 +128,7 @@
void LogTime()
{
struct tm tm;
- RtcGetTmUtc(&tm);
+ TimeToTmUtc(time(NULL), &tm);
pushuint4(tm.tm_year + 1900);
LogPush('-');