qmk_firmware/common/debug.c

16 lines
399 B
C
Raw Normal View History

2014-09-22 01:42:20 +00:00
#include <stdbool.h>
#include "debug.h"
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
2014-09-22 01:42:20 +00:00
debug_config_t debug_config = {
#if GCC_VERSION >= 40600
/* GCC Bug 10676 - Using unnamed fields in initializers
* https://gcc.gnu.org/bugzilla/show_bug.cgi?id=10676 */
2014-09-22 01:42:20 +00:00
.enable = false,
.matrix = false,
.keyboard = false,
.mouse = false,
#endif
2014-09-22 01:42:20 +00:00
};