FastLED
3.9.7
Loading...
Searching...
No Matches
dbg.h
1
#pragma once
2
3
#ifdef __EMSCRIPTEN__
4
#include "platforms/wasm/dbg_defs.h"
5
#endif
6
7
8
#ifndef FASTLED_HAS_DBG
9
// FASTLED_DBG is a macro that can be defined to enable debug printing.
10
#define FASTLED_DBG(X)
11
#endif
12
13
#ifndef FASTLED_DBG_IF
14
#ifdef FASTLED_HAS_DBG
15
#define FASTLED_DBG_IF(COND, MSG) if (COND) FASTLED_DBG(MSG)
16
#else
17
#define FASTLED_DBG_IF(COND, MSG)
18
#endif
// FASTLED_HAS_DBG
19
#endif
// FASTLED_DBG_IF
src
fl
dbg.h
Generated on Fri Dec 20 2024 20:54:48 for FastLED by
1.11.0