refactor: disable debug prints by a switch in RunningQuality

This commit is contained in:
2026-03-12 21:35:05 +01:00
parent bfb3c99184
commit 716a54e76e
2 changed files with 22 additions and 9 deletions

View File

@@ -5,7 +5,9 @@
#include "iir_filter.h"
#include <iostream>
#ifndef DEBUG_IIR
#define DEBUG_IIR 0
#endif
#if (DEBUG_IIR == 1)
#define DEBUG_PRINT(expr) do { expr; } while (0)