From 992f325078072276671bdb41d4c427672fd5371e Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 14 Nov 2020 15:41:24 +0100 Subject: [PATCH] prevent heartbeat with standalone --- src/system.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/system.cpp b/src/system.cpp index 9733834b2..d214e660d 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -245,10 +245,10 @@ void System::upload_status(bool in_progress) { // checks system health and handles LED flashing wizardry void System::loop() { #ifndef EMSESP_STANDALONE + if (syslog_enabled_) { syslog_.loop(); } -#endif led_monitor(); // check status and report back using the LED system_check(); // check system health @@ -272,6 +272,9 @@ void System::loop() { } #endif #endif + +#endif + } void System::show_mem(const char * note) {