diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-12-27 00:21:24 +1100 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-12-27 00:21:24 +1100 |
commit | 2fe8b9cc9df6abd2560a19474fb58da8e501873f (patch) | |
tree | 4a1efa0504bd50d82925bae7e02c703dafda403f /obdlogger | |
parent | 1f7a0c08ecf9884398bc032a62f021512ecd23f6 (diff) | |
download | 2021-arduino-obd-2fe8b9cc9df6abd2560a19474fb58da8e501873f.tar.gz 2021-arduino-obd-2fe8b9cc9df6abd2560a19474fb58da8e501873f.tar.bz2 2021-arduino-obd-2fe8b9cc9df6abd2560a19474fb58da8e501873f.zip |
Fixed bug of GPS date and time logging
Diffstat (limited to 'obdlogger')
-rw-r--r-- | obdlogger/datalogger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/obdlogger/datalogger.h b/obdlogger/datalogger.h index 315e803..43cae04 100644 --- a/obdlogger/datalogger.h +++ b/obdlogger/datalogger.h @@ -275,9 +275,9 @@ public: dataSize += sdfile.write(','); dataSize += sdfile.print(pid, HEX); dataSize += sdfile.write(','); - dataSize += sdfile.print(value1, 6); + dataSize += sdfile.print(value1); dataSize += sdfile.write(' '); - dataSize += sdfile.print(value2, 6); + dataSize += sdfile.print(value2); dataSize += sdfile.write('\n'); m_lastDataTime = dataTime; #endif |