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.

54 lines
1.6 KiB

  1. /* Copyright 2018
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
  18. #define DEBOUNCE 5
  19. /* define if matrix has ghost (lacks anti-ghosting diodes) */
  20. //#define MATRIX_HAS_GHOST
  21. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  22. #define LOCKING_SUPPORT_ENABLE
  23. /* Locking resynchronize hack */
  24. #define LOCKING_RESYNC_ENABLE
  25. /* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
  26. * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
  27. */
  28. // #define GRAVE_ESC_CTRL_OVERRIDE
  29. /*
  30. * Feature disable options
  31. * These options are also useful to firmware size reduction.
  32. */
  33. /* disable debug print */
  34. //#define NO_DEBUG
  35. /* disable print */
  36. //#define NO_PRINT
  37. /* disable action features */
  38. //#define NO_ACTION_LAYER
  39. //#define NO_ACTION_TAPPING
  40. //#define NO_ACTION_ONESHOT
  41. /* Bootmagic Lite key configuration */
  42. // #define BOOTMAGIC_LITE_ROW 0
  43. // #define BOOTMAGIC_LITE_COLUMN 0