diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2014-04-04 11:24:27 +0800 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2014-04-04 11:24:27 +0800 |
commit | ef68f7e2e5f1213e6bae66b46eee7f30c5627976 (patch) | |
tree | d488412633bc40c9e4ec0ab6f6df4f787c4a1242 /nanologger/nanologger.ino | |
parent | e9ac16f5bf871e5254c7992aa74f492306ca2e76 (diff) | |
download | 2021-arduino-obd-ef68f7e2e5f1213e6bae66b46eee7f30c5627976.tar.gz 2021-arduino-obd-ef68f7e2e5f1213e6bae66b46eee7f30c5627976.tar.bz2 2021-arduino-obd-ef68f7e2e5f1213e6bae66b46eee7f30c5627976.zip |
Update Nano Logger
Diffstat (limited to 'nanologger/nanologger.ino')
-rw-r--r-- | nanologger/nanologger.ino | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nanologger/nanologger.ino b/nanologger/nanologger.ino index b866341..10c1b5e 100644 --- a/nanologger/nanologger.ino +++ b/nanologger/nanologger.ino @@ -70,11 +70,8 @@ public: showStates(); - uint16_t flags = FLAG_CAR | FLAG_OBD; - if (state & STATE_GPS_FOUND) flags |= FLAG_GPS; - if (state & STATE_ACC_READY) flags |= FLAG_ACC; #if ENABLE_DATA_LOG - uint16_t index = openFile(LOG_TYPE_DEFAULT, flags); + uint16_t index = openFile(); lcd.setFont(FONT_SIZE_SMALL); lcd.setCursor(86, 0); if (index) { |