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.

113 lines
6.2 KiB

[Keyboard] gBoards GergoPlex (#13027) * Moved gergoplex to seperate PR * vendor + cformat * Update keyboards/gboards/k/gergoplex/matrix.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * lifiting keyboards up * Update readme.md * Update keyboards/gboards/gergoplex/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * remove English dicts * cformatted * Prettify keymap * Remove via keymaps Via doesn't support chords/combos, and this makes the keymap on such a small keyboard quite uncomfortable and incomplete. * Address QMK pull code review notes * Cleanup (tabs, excessive comments) * Fix keymap typos * Use enum to define layers * Multiple changes - got rid of LAYOUT_kc in favour of LAYOUT_split_3x5_3 - fixed matrix custom C code to build with updated external dependencies (gcc) - fixed used combo docs keyboards/gboards/gergoplex/matrix.c:189:9: error: implicit declaration of function 'phex' [-Werror=implicit-function-declaration] phex(row); ^~~~ keyboards/gboards/gergoplex/matrix.c:191:9: error: implicit declaration of function 'pbin_reverse16'; did you mean 'print_bin_reverse16'? [-Werror=implicit-function-declaration] pbin_reverse16(matrix_get_row(row)); * Remove apparently redundant macros * Replace direct pin control with IO functions * config mouse enable and combo delay fix The default delay is 200: #define COMBO_TERM 200 how long for the Combo keys to be detected. Defaults to TAPPING_TERM if not defined. tmk_core/common/action_tapping.h|22| 13:# define TAPPING_TERM 200 * Remove redundant defines * Unambiguously refer to the Special layer * Fix formatting * gboards/gergoplex set IGNORE_MOD_TAP_INTERRUPT This solves my issue was with KC_CTL_A working correctly and it was set in @germ's repo https://github.com/germ/qmk_firmware/blob/39c86e080dc04b68ee08387dcb5144c88cb44855/keyboards/gboards/k/gergoplex/config.h#L49 https://beta.docs.qmk.fm/using-qmk/software-features/tap_hold#ignore-mod-tap-interrupt * Name change See commit 581368596ed * Wording change * Update keyboards/gboards/gergoplex/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Add copyright headers * Fix debounce type | avr-gcc: error: .build/obj_gboards_gergoplex_default/quantum/debounce/eager_pr.o: No such file or directory * Implement colemak-dhm keymap Co-authored-by: Germ <jeremythegeek@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Brian Tannous <Brian@BrianTannous.com>
2 years ago
  1. /* Copyright 2021 Jane Bernhardt
  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. /* Good on you for modifying your layout! if you don't have
  17. * time to read the QMK docs, a list of keycodes can be found at
  18. * https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes.md
  19. */
  20. #include QMK_KEYBOARD_H
  21. #include "g/keymap_combo.h"
  22. enum {
  23. _ALPHA, // default
  24. _SPECIAL, // special characters
  25. _NUMBERS // numbers/function/motion
  26. };
  27. #define KC_CTL_A MT(MOD_LCTL, KC_A) // Tap for A, hold for Control
  28. #define KC_CTL_CL MT(MOD_LCTL, KC_SCLN) // Tap for colon, hold for Control
  29. #define KC_SFT_Z MT(MOD_RSFT, KC_Z) // Tap for Z, hold for Shift
  30. #define KC_SFT_SL MT(MOD_RSFT, KC_SLSH) // Tap for slash, hold for Shift
  31. #define KC_GUI_ESC MT(MOD_LGUI, KC_ESC) // Tap for Esc, hold for GUI (Meta, Command, Win)
  32. #define KC_ALT_ENT MT(MOD_LALT, KC_ENT) // Tap for Enter, hold for Alt (Option)
  33. #define KC_SPE_SPC LT(_SPECIAL, KC_SPC) // Tap for Space, hold for Special layer
  34. #define KC_NUM_SPC LT(_NUMBERS, KC_SPC) // Tap for Space, hold for Numbers layer
  35. #define KC_SFT_TAB MT(MOD_RSFT, KC_TAB) // Tap for Tab, hold for Right Shift
  36. /* Combomap
  37. *
  38. * ,-------------------------------. ,-------------------------------.
  39. * | | ESC | | | | | ESC | \ |
  40. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  41. * | | BSPC TAB | | | < : > | |
  42. * |-------+-----+-----+-RMB-+-LMB-| |ENTER+-----+-----+-----+-------|
  43. * | | - ENTER | | | ' _ | | |
  44. * `-------------------------------' `-------------------------------'
  45. * .-----------------. .-----------------.
  46. * | | | | | | | |
  47. * '-----------------' '-----------------'
  48. */
  49. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  50. /* Keymap 0: Alpha layer
  51. *
  52. * ,-------------------------------. ,-------------------------------.
  53. * | Q | W | E | R | T | | Y | U | I | O | P |
  54. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  55. * | CTRL A| S | D | F | G | | H | J | K | L |CTRL ; |
  56. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  57. * | SHFT Z| X | C | V | B | | N | M | < | > |SHFT / |
  58. * `-------------------------------' `-------------------------------'
  59. * .------------------------------. .----------------------.
  60. * | ESC META | ENT ALT | SPC SPE | | SPC NUM | SHFT | TAB |
  61. * '------------------------------' '----------------------'
  62. */
  63. [_ALPHA] = LAYOUT_split_3x5_3(
  64. KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
  65. KC_CTL_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_CTL_CL,
  66. KC_SFT_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMMA, KC_DOT, KC_SFT_SL,
  67. KC_GUI_ESC, KC_ALT_ENT, KC_SPE_SPC, KC_NUM_SPC, KC_LSFT, KC_SFT_TAB),
  68. /* Keymap 1: Special characters layer
  69. *
  70. * ,-------------------------------. ,-------------------------------.
  71. * | ! | @ | { | } | | | | ` | ~ | | | \ |
  72. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  73. * | # | $ | ( | ) | RMB | | + | - | / | * | ' |
  74. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  75. * | % | ^ | [ | ] | LMB | | & | = | , | . | - |
  76. * `-------------------------------' `-------------------------------'
  77. * .-------------------------. .-----------------.
  78. * | ComboToggle | ; | = | | = | ; | DEL |
  79. * '-------------------------' '-----------------'
  80. */
  81. [_SPECIAL] = LAYOUT_split_3x5_3(
  82. KC_EXLM, KC_AT, KC_LCBR, KC_RCBR, KC_PIPE, KC_GRV, KC_TILD, KC_TRNS, KC_TRNS, KC_BSLS,
  83. KC_HASH, KC_DLR, KC_LPRN, KC_RPRN, KC_BTN2, KC_PLUS, KC_MINS, KC_SLSH, KC_ASTR, KC_QUOT,
  84. KC_PERC, KC_CIRC, KC_LBRC, KC_RBRC, KC_BTN1, KC_AMPR, KC_EQL, KC_COMM, KC_DOT, KC_MINS,
  85. CMB_TOG, KC_SCLN, KC_EQL, KC_EQL, KC_SCLN, KC_DEL),
  86. /* Keymap 2: Numbers/Function/Motion layer
  87. *
  88. * ,-------------------------------. ,-------------------------------.
  89. * | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 |
  90. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  91. * | F1 | F2 | F3 | F4 | F5 | | LFT | DWN | UP | RGT | VOLUP |
  92. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  93. * | F6 | F7 | F8 | F9 | F10 | | MLFT| MDWN| MUP | MRGT| VOLDN |
  94. * `-------------------------------' `-------------------------------'
  95. * .-----------------. .-----------------.
  96. * | F11 | F12 | | | | PLY | SKP |
  97. * '-----------------' '-----------------'
  98. */
  99. [_NUMBERS] = LAYOUT_split_3x5_3(
  100. KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
  101. KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_VOLU,
  102. KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_VOLD,
  103. KC_F11, KC_F12, KC_TRNS, KC_TRNS, KC_MPLY, KC_MNXT)
  104. };