Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

debug.c 399B

123456789101112131415
  1. #include <stdbool.h>
  2. #include "debug.h"
  3. #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
  4. debug_config_t debug_config = {
  5. #if GCC_VERSION >= 40600
  6. /* GCC Bug 10676 - Using unnamed fields in initializers
  7. * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=10676 */
  8. .enable = false,
  9. .matrix = false,
  10. .keyboard = false,
  11. .mouse = false,
  12. #endif
  13. };