From 99368bc07feb52e844fd8367a6f5c050dac5e7f4 Mon Sep 17 00:00:00 2001 From: "Schoenberger, Philipp" Date: Tue, 16 Apr 2019 20:47:51 +0200 Subject: [PATCH] disable debug --- remote/include/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote/include/debug.h b/remote/include/debug.h index f511621..a0f0036 100644 --- a/remote/include/debug.h +++ b/remote/include/debug.h @@ -6,7 +6,7 @@ //******************** //** Debug messages ** //******************** -#define ENABLE_DBEUG // ~1k +//#define ENABLE_DBEUG // ~1k #ifdef ENABLE_DBEUG #define debug(msg, ...) { char buf[256]; sprintf(buf, msg, ##__VA_ARGS__); Serial.print(buf);} #define debugln(msg, ...) { char buf[256]; sprintf(buf, msg "\r\n", ##__VA_ARGS__); Serial.println(buf);}