xrocusOS_ADXL355 version

Dependencies:   mbed SDFileSystem

Revision:
4:bec3f80dc49c
Parent:
2:a694440145e9
Child:
12:a45a9c65dc03
--- a/common/TimeManager.cpp	Tue Apr 23 08:49:40 2019 +0000
+++ b/common/TimeManager.cpp	Wed Apr 24 00:40:42 2019 +0000
@@ -56,7 +56,7 @@
 int TimeManager::getTimeStamp(char *dst)
 {
     char dummy[TimeStampLength + 1];
-    sprintf(dummy, "%04d-%02d-%02d_%02d:%02d:%02d",
+    sprintf(dummy, "%04d-%02d-%02d_%02d-%02d-%02d",
         current.tm_year + 1900, current.tm_mon, current.tm_mday,
         current.tm_hour, current.tm_min, current.tm_sec);
     memcpy(dst, dummy, TimeStampLength);