From 1d0951c919318d4731c3703769abeb891b8dbe36 Mon Sep 17 00:00:00 2001 From: Steve Ryan <1319496+VeloSteve@users.noreply.github.com> Date: Fri, 1 Jul 2022 11:36:41 -0700 Subject: [PATCH] Removed a commented line, #ifdef around graph file function --- CBASS_BLE/CBASS_BLE.ino | 1 - CBASS_BLE/SD.ino | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CBASS_BLE/CBASS_BLE.ino b/CBASS_BLE/CBASS_BLE.ino index 269dc06..b7c2896 100644 --- a/CBASS_BLE/CBASS_BLE.ino +++ b/CBASS_BLE/CBASS_BLE.ino @@ -24,7 +24,6 @@ // SD card shield library #include -//#include // PID Library #include //#include diff --git a/CBASS_BLE/SD.ino b/CBASS_BLE/SD.ino index a9af64a..d05015a 100644 --- a/CBASS_BLE/SD.ino +++ b/CBASS_BLE/SD.ino @@ -380,6 +380,7 @@ void printAsHM(unsigned int t) { hundredths. */ +#ifdef USEBLE void saveGraphTemps() { logFile = SD.open("GRAPHPTS.TXT", FILE_WRITE); // Trust time "t" to be close enough, since it was set just before saving new @@ -402,7 +403,7 @@ void saveGraphTemps() { logFile.println(); logFile.close(); } - +#endif // USEBLE /* Read from tryHere to a newline, into the provided buffer.