From d3cee6067118be36dbcc2ee75821429ce3a714f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20H=C3=B6rich?= <77063724+tonyxforce@users.noreply.github.com> Date: Thu, 6 Mar 2025 08:06:43 +0100 Subject: [PATCH] Remove unneeded logging --- FIFObuf.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/FIFObuf.h b/FIFObuf.h index 9abd1e4..dd7d186 100644 --- a/FIFObuf.h +++ b/FIFObuf.h @@ -41,7 +41,6 @@ class FIFObuf { if (newHead == _tail) { return false; // Buffer overflow } else { - Serial.printf("Push data %d, head: %d, tail: %d, nextTail: %d\n", data, _head, _tail, newHead); _buffer[_head] = data; _head = newHead; return true; @@ -54,7 +53,6 @@ class FIFObuf { return T(); // Buffer empty } else { T data = _buffer[_tail]; - Serial.printf("Pop data %d, head: %d, tail: %d\n", data, _head, _tail); _tail = (_tail + 1) % _bufferSize; return data; }