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.

99 lines
5.6 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. /* Good on you for modifying your layout! if you don't have
  2. * time to read the QMK docs, a list of keycodes can be found at
  3. * https://github.com/qmk/qmk_firmware/blob/master/docs/keycodes.md
  4. */
  5. #include "gergoplex.h"
  6. #include "g/keymap_combo.h"
  7. enum {
  8. _ALPHA, // default (Colemak DHm)
  9. _SPECIAL, // special characters
  10. _NUMBERS // numbers/function/motion
  11. };
  12. // alpha hold modifiers
  13. #define KC_CTL_A MT(MOD_LCTL, KC_A) // Tap for A, hold for Control
  14. #define KC_CTL_O MT(MOD_RCTL, KC_O) // Tap for colon, hold for Control
  15. #define KC_SFT_Z MT(MOD_LSFT, KC_Z) // Tap for Z, hold for Shift
  16. #define KC_SFT_SL MT(MOD_RSFT, KC_SLSH) // Tap for slash, hold for Shift
  17. // thumb modifiers/toggles
  18. #define KC_GUI_ESC MT(MOD_LGUI, KC_ESC) // Tap for Esc, hold for GUI (Meta, Command, Win)
  19. #define KC_ALT_ENT MT(MOD_LALT, KC_ENT) // Tap for Enter, hold for Alt (Option)
  20. #define KC_SPE_SPC LT(_SPECIAL, KC_SPC) // Tap for Space, hold for Special layer
  21. #define KC_NUM_SPC LT(_NUMBERS, KC_SPC) // Tap for Space, hold for Numbers layer
  22. #define KC_SFT_TAB MT(MOD_RSFT, KC_TAB) // Tap for Tab, hold for Right Shift
  23. /* Combomap
  24. *
  25. * ,-------------------------------. ,-------------------------------.
  26. * | | ESC | | | | | ESC | \ |
  27. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  28. * | | BSPC TAB | | | < : > | |
  29. * |-------+-----+-----+-RMB-+-LMB-| |ENTER+-----+-----+-----+-------|
  30. * | | - ENTER | | | ' _ | | |
  31. * `-------------------------------' `-------------------------------'
  32. * .-----------------. .-----------------.
  33. * | | | | | | | |
  34. * '-----------------' '-----------------'
  35. */
  36. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  37. /* Keymap 0: Alpha layer / Colemak DHm
  38. *
  39. * ,-------------------------------. ,-------------------------------.
  40. * | Q | W | F | P | B | | J | L | U | Y | ; |
  41. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  42. * | CTRL A| R | S | T | G | | M | N | E | I | O |
  43. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  44. * | SHFT Z| X | C | D | V | | K | H | < | > |SHFT / |
  45. * `-------------------------------' `-------------------------------'
  46. * .------------------------------. .----------------------.
  47. * | ESC META | ENT ALT | SPC SPE | | SPC NUM | SHFT | TAB |
  48. * '------------------------------' '----------------------'
  49. */
  50. [_ALPHA] = LAYOUT_split_3x5_3(
  51. KC_Q, KC_W, KC_F, KC_P, KC_B, KC_J, KC_L, KC_U, KC_Y, KC_SCLN,
  52. KC_CTL_A, KC_R, KC_S, KC_T, KC_G, KC_M, KC_N, KC_E, KC_I, KC_CTL_O,
  53. KC_SFT_Z, KC_X, KC_C, KC_D, KC_V, KC_K, KC_H, KC_COMMA, KC_DOT, KC_SFT_SL,
  54. KC_GUI_ESC, KC_ALT_ENT, KC_SPE_SPC, KC_NUM_SPC, KC_LSFT, KC_SFT_TAB),
  55. /* Keymap 1: Special characters layer
  56. *
  57. * ,-------------------------------. ,-------------------------------.
  58. * | ! | @ | { | } | | | | ` | ~ | | | \ |
  59. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  60. * | # | $ | ( | ) | RMB | | + | - | / | * | ' |
  61. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  62. * | % | ^ | [ | ] | LMB | | & | = | , | . | - |
  63. * `-------------------------------' `-------------------------------'
  64. * .-------------------------. .-----------------.
  65. * | ComboToggle | ; | = | | = | ; | DEL |
  66. * '-------------------------' '-----------------'
  67. */
  68. [_SPECIAL] = LAYOUT_split_3x5_3(
  69. KC_EXLM, KC_AT, KC_LCBR, KC_RCBR, KC_PIPE, KC_GRV, KC_TILD, KC_TRNS, KC_TRNS, KC_BSLS,
  70. KC_HASH, KC_DLR, KC_LPRN, KC_RPRN, KC_BTN2, KC_PLUS, KC_MINS, KC_SLSH, KC_ASTR, KC_QUOT,
  71. KC_PERC, KC_CIRC, KC_LBRC, KC_RBRC, KC_BTN1, KC_AMPR, KC_EQL, KC_COMM, KC_DOT, KC_MINS,
  72. CMB_TOG, KC_SCLN, KC_EQL, KC_EQL, KC_SCLN, KC_DEL),
  73. /* Keymap 2: Numbers/Function/Motion layer
  74. *
  75. * ,-------------------------------. ,-------------------------------.
  76. * | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 |
  77. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  78. * | F1 | F2 | F3 | F4 | F5 | | LFT | DWN | UP | RGT | VOLUP |
  79. * |-------+-----+-----+-----+-----| |-----+-----+-----+-----+-------|
  80. * | F6 | F7 | F8 | F9 | F10 | | MLFT| MDWN| MUP | MRGT| VOLDN |
  81. * `-------------------------------' `-------------------------------'
  82. * .-----------------. .-----------------.
  83. * | F11 | F12 | | | | PLY | SKP |
  84. * '-----------------' '-----------------'
  85. */
  86. [_NUMBERS] = LAYOUT_split_3x5_3(
  87. KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
  88. KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_VOLU,
  89. KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_VOLD,
  90. KC_F11, KC_F12, KC_TRNS, KC_TRNS, KC_MPLY, KC_MNXT)
  91. };