logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

xmk.c (321B)


  1. // Copyright 2022 Manna Harbour (@manna-harbour)
  2. // https://github.com/manna-harbour/xmk
  3. // SPDX-License-Identifier: GPL-2.0-or-later
  4. #include "quantum.h"
  5. #if defined (XMK_DEBUG)
  6. void keyboard_post_init_kb(void) {
  7. debug_enable=true;
  8. debug_matrix=true;
  9. debug_keyboard=true;
  10. keyboard_post_init_user();
  11. }
  12. #endif