From 66e760391d9161c0c1a683aa41bd3e8c84179c17 Mon Sep 17 00:00:00 2001 From: August Quint <49277349+AugustQu@users.noreply.github.com> Date: Thu, 6 Feb 2020 14:29:23 +0100 Subject: [PATCH 1/2] Update cyclic.cpp removed some debug-info --- src/cyclic.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cyclic.cpp b/src/cyclic.cpp index 2fd00037..b0223381 100644 --- a/src/cyclic.cpp +++ b/src/cyclic.cpp @@ -14,9 +14,7 @@ extern boolean isSDS011Active; #endif void housekeeping() { - static int counter = 0; xTaskNotifyFromISR(irqHandlerTask, CYCLIC_IRQ, eSetBits, NULL); -ESP_LOGI( TAG, "in Housekeeping(): %d", counter++); } // do all housekeeping From 853bddd2655233a7ebf7ee07fe12c89591891b20 Mon Sep 17 00:00:00 2001 From: August Quint <49277349+AugustQu@users.noreply.github.com> Date: Thu, 6 Feb 2020 14:30:04 +0100 Subject: [PATCH 2/2] Update senddata.cpp removed some debug-info --- src/senddata.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/senddata.cpp b/src/senddata.cpp index 00986562..577748c4 100644 --- a/src/senddata.cpp +++ b/src/senddata.cpp @@ -9,10 +9,7 @@ extern float pm25; #endif void sendcycle() { - static int counter = 0; xTaskNotifyFromISR(irqHandlerTask, SENDCYCLE_IRQ, eSetBits, NULL); -ESP_LOGI( TAG, "in sendcycle(): %d", counter++); - } // put data to send in RTos Queues used for transmit over channels Lora and SPI