diff --git a/BoardInterface.cpp b/BoardInterface.cpp index 09e45c1..12d9af8 100644 --- a/BoardInterface.cpp +++ b/BoardInterface.cpp @@ -179,7 +179,7 @@ void BoardInterface::loadSettings() { liveData->settings = liveData->tmpSettings; } - void customConsoleCommand(String cmd); +// void customConsoleCommand(String cmd); } diff --git a/BoardInterface.h b/BoardInterface.h index bbcc580..404d76e 100644 --- a/BoardInterface.h +++ b/BoardInterface.h @@ -45,7 +45,7 @@ class BoardInterface { void saveSettings(); void resetSettings(); void loadSettings(); - void customConsoleCommand(String cmd); +// void customConsoleCommand(String cmd); }; #endif // BOARDINTERFACE_H diff --git a/evDash.ino b/evDash.ino index 9cba4f4..b2bdebb 100644 --- a/evDash.ino +++ b/evDash.ino @@ -636,7 +636,7 @@ void loop() { if (Serial.available()) { ch = Serial.read(); if (ch == '\r' || ch == '\n') { - board->customConsoleCommand(line); +//board->customConsoleCommand(line); line = line + ch; Serial.println(line); liveData->pRemoteCharacteristicWrite->writeValue(line.c_str(), line.length());