summaryrefslogtreecommitdiff
path: root/keyboards/gmmk
AgeCommit message (Collapse)Author
2022-10-04Fix Per Key LED Indicator Callbacks (#18450)Drashna Jaelre
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2022-09-26Change `{LED,RGB}_DISABLE_TIMEOUT` to `{LED,RGB}_MATRIX_TIMEOUT` (#18415)Ryan
2022-09-24Merge remote-tracking branch 'origin/master' into developDrashna Jael're
2022-09-24[Keymap] falkecarlsen gmmk keymap and readme (#17286)Falke Carlsen
2022-09-24GMMK Pro: fix unintended volume encoder taps (#17129)Andre Brait
2022-09-23Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan
2022-09-12Merge remote-tracking branch 'origin/master' into developJoshua Diamond
2022-09-09Added gmmk v2 p65 keyboard. (#18185)Joy Lee
2022-08-30Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler
* Add ARRAY_SIZE and CEILING utility macros * Apply a coccinelle patch to use ARRAY_SIZE * fix up some straggling items * Fix 'make test:secure' * Enhance ARRAY_SIZE macro to reject acting on pointers The previous definition would not produce a diagnostic for ``` int *p; size_t num_elem = ARRAY_SIZE(p) ``` but the new one will. * explicitly get definition of ARRAY_SIZE * Convert to ARRAY_SIZE when const is involved The following spatch finds additional instances where the array is const and the division is by the size of the type, not the size of the first element: ``` @ rule5a using "empty.iso" @ type T; const T[] E; @@ - (sizeof(E)/sizeof(T)) + ARRAY_SIZE(E) @ rule6a using "empty.iso" @ type T; const T[] E; @@ - sizeof(E)/sizeof(T) + ARRAY_SIZE(E) ``` * New instances of ARRAY_SIZE added since initial spatch run * Use `ARRAY_SIZE` in docs (found by grep) * Manually use ARRAY_SIZE hs_set is expected to be the same size as uint16_t, though it's made of two 8-bit integers * Just like char, sizeof(uint8_t) is guaranteed to be 1 This is at least true on any plausible system where qmk is actually used. Per my understanding it's universally true, assuming that uint8_t exists: https://stackoverflow.com/questions/48655310/can-i-assume-that-sizeofuint8-t-1 * Run qmk-format on core C files touched in this branch Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
2022-08-29Swap KC_VOLD and KC_VOLU on GMMK2 to correct places (#18193)NGatti1997
2022-08-24Move keyboard USB IDs and strings to data driven: develop (#18152)Ryan
* Move keyboard USB IDs and strings to data driven: develop * Also do new onekeys
2022-08-21RESET -> QK_BOOT user keymaps (#17940)Joel Challis
2022-08-15Fixup gmmk/pro/rev2 USB Data (#18056)jack
2022-08-15Merge remote-tracking branch 'upstream/master' into developfauxpark
2022-08-15Move keyboard USB IDs and strings to data driven, pass 2: F-I (#17958)Ryan
2022-08-14Added support for gmmk pro rev2 keyboard. (#17655)Joy Lee
Co-authored-by: Joy <chang.li@westberrytech.com>
2022-08-13Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-08-13Updated gourdo1 GMMK Pro keymaps (#17873)gourdo1
* Fixed Left Shift tapdance in general and for gaming mode. (#12) * update ISO readme * left shift fixed in general, including for gaming mode * fixed toggle menu rendering on ISO layouts * updated readme's and cosmetics * update readme's * update readme's again * readme cosmetics * consolidate readme's * more readme cosmetics * clarification for bootloader mode on ISO * Autocorrect added with 400 word English dictionary (#13) * autocorrect added with 400 word dictionary * update readme's for autocorrect * Add FN-B as shortcut to bootloader * Update .gitignore Co-authored-by: Joel Challis <git@zvecr.com> * RGB changes to system numlock and ISO extended alphas - hide system numlock off indicator (primarily for Mac users) by moving it to numpad and FN layers instead - give users with extended alpha ISO languages a config option to add RGB highlights for extras alphas on capslock * readme updates * Fixed [FN]B and [FN]N shortcuts not working on numpad layer Co-authored-by: Joel Challis <git@zvecr.com>
2022-08-06[Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann
`QMK_KEYS_PER_SCAN` (#15292)
2022-08-04[Core] `STM32_USB_USE_OTG1` => `USB_ENDPOINTS_ARE_REORDERABLE` (#17647)Nick Brassel
2022-07-12GMMK 2 WBG7 MCU compatibility (#16436)GloriousThrall
* GMMK V2 QMK Compatibility * fix problems * Update keyboards/gmmk/gmmk2/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Fix a minor problem * Optimize the code * Update config.h * Update * Update config.h * Update keyboards/gmmk/gmmk2/p96/ansi/keymaps/via/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update config.h * Update keyboards/gmmk/gmmk2/p96/iso/keymaps/via/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update config.h * Update keyboards/gmmk/gmmk2/p65/ansi/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/ansi/keymaps/default/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/ansi/keymaps/via/keymap.c Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/ansi/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p96/iso/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/gmmk/gmmk2/p65/iso/rules.mk Co-authored-by: Drashna Jaelre <drashna@live.com> * Update config.h * Update config.h * Update config.h * Modify device pid * Add gmmk2_p96 keyboard. * Add gmmk2_p96 keyboard. * Update led matrix. * Update led matrix. * Delete eeprom_flash.c * Update keyboards/gmmk/gmmk2/p96/ansi/rules.mk Co-authored-by: Nick Brassel <nick@tzarc.org> * Update from qmk develop branch * Increased compatibility with wear_leveling. * Update config.h Co-authored-by: Joy <chang.li@westberrytech.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2022-07-03[keymap] Update gourdo1 keymap for Q2 changes (#17398)gourdo1
2022-06-07[Keymap] add trwnh keymap for gmmk pro (#17267)trwnh
2022-05-20Move GMMK Pro to allow for multiple revisions (#16423)GloriousThrall
* Added GMMK PRO Rev2 WBG7 MCU compatibility. Added GMMK 2 WBG7 MCU compatibility. * GMMK PRO MCU Updates only (removed other kbs) * fix problems * Optimize the code. * Update form develop branch * Update * Updater from qmk/develop * Update * Update config.h * Update config.h * Remove gmmk pro rev2 * move moults31/keymap.c * Update * tidy up Co-authored-by: Joy <chang.li@westberrytech.com> Co-authored-by: zvecr <git@zvecr.com>
2022-05-15RESET -> QK_BOOT default keymaps (#17037)Joel Challis
2022-04-19Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-04-19New custom keymap for Glorious GMMK Pro ANSI layout (#16199)gourdo1
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-04-18[Keymap] Add andrewcharnley keymap for GMMK Pro (#15320)Andrew Charnley
2022-04-11GMMK Pro return false in encoder user. (#16830)Dasky
2022-03-23[Keyboard] Add keyboard level encoder function for GMMK Pro (#16721)jack
2022-03-10add chofstede keymap for gmmk/pro/iso (#16045)Christian Hofstede
Add new keymap for GMMK with some additional mappings and led indicator for caps lock * add chofstede keymap * fix formatting * fix formatting * add readme * Update keyboards/gmmk/pro/iso/keymaps/chofstede/keymap.c
2022-03-09Add macOS-friendly keymap for GMMK Pro (ANSI) (#14333)Hansol Kim
* Add macOS keymap for GMMK Pro (ANSI) * Change macOS keymap directory name to lowercase * Add toggleable layer with alternative keymap for function row * Update readme
2022-02-26Remove 1k USB_POLLING_INTERVAL_MS config from keyboards and default-ish ↵Joel Challis
keymaps (#16448) * Remove 1k USB_POLLING_INTERVAL_MS config from keyboard level * Remove 1k USB_POLLING_INTERVAL_MS config from default|via keymaps
2022-02-05Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-02-04[Keymap] add LalitMaganti GMMK Pro Keymap (#16203)Lalit Maganti
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-02-02Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-02-01[Keymap] Add MacOS layer (#16151)Andre Brait
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-01-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-30[Keymap]: Create Gigahawk GMMK Pro keymap (#15934)Gigahawk
2022-01-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-30[Keymap] Add hachetman layout for GMMK Pro (#16131)Christian Grumbein
2022-01-19Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-19Small code improvements, fix KVM switch issues with GMMK Pro on andrebrait's ↵Andre Brait
keymap (#15943) * Add LED table * Make constants constant * Disable Mousekey to fix issues with KVM Fixes #15939 * Update GMMK/pro/ansi/andrebrait README
2022-01-13Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-12[Keymap] Add personal keymap to GMMK Pro ANSI (#15314)Choi Byungyoon
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-01-10[Keymap] Add another GMMK Pro ANSI Keymap with custom RGB. (#14243)cedrikl
Co-authored-by: Cedrik Lussier <lussier.cedrik@gmail.com>
2022-01-11Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-10[Keymap] Add new The GMMK PRO keymap (#15664)Batın Eryılmaz
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-01-11Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-10[Keymap] Jonavin gmmk pro iso keymap (#15775)jonavin
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Jonavin <=>