Remove flush() in bus manager.

This commit is contained in:
Blaz Kristan 2022-11-11 18:42:00 +01:00
parent 6403d18d15
commit 61b5e5ad7e

View File

@ -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)