bootmagic_full.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* Copyright 2021 QMK
  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 3 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. /* FIXME: Add special doxygen comments for defines here. */
  18. /* bootmagic salt key */
  19. #ifndef BOOTMAGIC_KEY_SALT
  20. # define BOOTMAGIC_KEY_SALT KC_SPACE
  21. #endif
  22. /* skip bootmagic and eeconfig */
  23. #ifndef BOOTMAGIC_KEY_SKIP
  24. # define BOOTMAGIC_KEY_SKIP KC_ESC
  25. #endif
  26. /* eeprom clear */
  27. #ifndef BOOTMAGIC_KEY_EEPROM_CLEAR
  28. # define BOOTMAGIC_KEY_EEPROM_CLEAR KC_BSPACE
  29. #endif
  30. /* kick up bootloader */
  31. #ifndef BOOTMAGIC_KEY_BOOTLOADER
  32. # define BOOTMAGIC_KEY_BOOTLOADER KC_B
  33. #endif
  34. /* debug enable */
  35. #ifndef BOOTMAGIC_KEY_DEBUG_ENABLE
  36. # define BOOTMAGIC_KEY_DEBUG_ENABLE KC_D
  37. #endif
  38. #ifndef BOOTMAGIC_KEY_DEBUG_MATRIX
  39. # define BOOTMAGIC_KEY_DEBUG_MATRIX KC_X
  40. #endif
  41. #ifndef BOOTMAGIC_KEY_DEBUG_KEYBOARD
  42. # define BOOTMAGIC_KEY_DEBUG_KEYBOARD KC_K
  43. #endif
  44. #ifndef BOOTMAGIC_KEY_DEBUG_MOUSE
  45. # define BOOTMAGIC_KEY_DEBUG_MOUSE KC_M
  46. #endif
  47. #ifndef BOOTMAGIC_KEY_EE_HANDS_LEFT
  48. # define BOOTMAGIC_KEY_EE_HANDS_LEFT KC_L
  49. #endif
  50. #ifndef BOOTMAGIC_KEY_EE_HANDS_RIGHT
  51. # define BOOTMAGIC_KEY_EE_HANDS_RIGHT KC_R
  52. #endif
  53. /*
  54. * keymap config
  55. */
  56. #ifndef BOOTMAGIC_KEY_SWAP_CONTROL_CAPSLOCK
  57. # define BOOTMAGIC_KEY_SWAP_CONTROL_CAPSLOCK KC_LCTRL
  58. #endif
  59. #ifndef BOOTMAGIC_KEY_CAPSLOCK_TO_CONTROL
  60. # define BOOTMAGIC_KEY_CAPSLOCK_TO_CONTROL KC_CAPSLOCK
  61. #endif
  62. #ifndef BOOTMAGIC_KEY_SWAP_LALT_LGUI
  63. # define BOOTMAGIC_KEY_SWAP_LALT_LGUI KC_LALT
  64. #endif
  65. #ifndef BOOTMAGIC_KEY_SWAP_RALT_RGUI
  66. # define BOOTMAGIC_KEY_SWAP_RALT_RGUI KC_RALT
  67. #endif
  68. #ifndef BOOTMAGIC_KEY_NO_GUI
  69. # define BOOTMAGIC_KEY_NO_GUI KC_LGUI
  70. #endif
  71. #ifndef BOOTMAGIC_KEY_SWAP_GRAVE_ESC
  72. # define BOOTMAGIC_KEY_SWAP_GRAVE_ESC KC_GRAVE
  73. #endif
  74. #ifndef BOOTMAGIC_KEY_SWAP_BACKSLASH_BACKSPACE
  75. # define BOOTMAGIC_KEY_SWAP_BACKSLASH_BACKSPACE KC_BSLASH
  76. #endif
  77. #ifndef BOOTMAGIC_HOST_NKRO
  78. # define BOOTMAGIC_HOST_NKRO KC_N
  79. #endif
  80. /*
  81. * change default layer
  82. */
  83. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_0
  84. # define BOOTMAGIC_KEY_DEFAULT_LAYER_0 KC_0
  85. #endif
  86. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_1
  87. # define BOOTMAGIC_KEY_DEFAULT_LAYER_1 KC_1
  88. #endif
  89. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_2
  90. # define BOOTMAGIC_KEY_DEFAULT_LAYER_2 KC_2
  91. #endif
  92. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_3
  93. # define BOOTMAGIC_KEY_DEFAULT_LAYER_3 KC_3
  94. #endif
  95. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_4
  96. # define BOOTMAGIC_KEY_DEFAULT_LAYER_4 KC_4
  97. #endif
  98. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_5
  99. # define BOOTMAGIC_KEY_DEFAULT_LAYER_5 KC_5
  100. #endif
  101. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_6
  102. # define BOOTMAGIC_KEY_DEFAULT_LAYER_6 KC_6
  103. #endif
  104. #ifndef BOOTMAGIC_KEY_DEFAULT_LAYER_7
  105. # define BOOTMAGIC_KEY_DEFAULT_LAYER_7 KC_7
  106. #endif