From 61b5e5ad7e5981c0552c25d18be6f52f5f0dfc31 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Fri, 11 Nov 2022 18:42:00 +0100 Subject: [PATCH] Remove flush() in bus manager. --- wled00/bus_manager.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/wled00/bus_manager.h b/wled00/bus_manager.h index 85e1fcf9..5f604321 100644 --- a/wled00/bus_manager.h +++ b/wled00/bus_manager.h @@ -28,12 +28,10 @@ void colorRGBtoRGBW(byte* rgb); #define DEBUG_PRINT(x) DEBUGOUT.print(x) #define DEBUG_PRINTLN(x) DEBUGOUT.println(x) #define DEBUG_PRINTF(x...) DEBUGOUT.printf(x) - #define DEBUG_FLUSH() DEBUGOUT.flush() #else #define DEBUG_PRINT(x) #define DEBUG_PRINTLN(x) #define DEBUG_PRINTF(x...) - #define DEBUG_FLUSH() #endif #define GET_BIT(var,bit) (((var)>>(bit))&0x01)