make all default settings configurable at build

This commit is contained in:
proddy
2021-04-03 10:56:18 +02:00
parent 6e3b496f86
commit 8c52145c7b
11 changed files with 182 additions and 65 deletions

View File

@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#if defined(EMSESP_TEST)
#if defined(EMSESP_DEBUG)
#include "test.h"
@@ -191,7 +191,7 @@ void Test::run_test(uuid::console::Shell & shell, const std::string & cmd) {
std::string command(20, '\0');
if ((cmd.empty()) || (cmd == "default")) {
command = EMSESP_TEST_DEFAULT;
command = EMSESP_DEBUG_DEFAULT;
} else {
command = cmd;
}