Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-09-20 | 1 | -19/+21 |
|\ | |||||
| * | [Keymap] Added Kyria keyboard to jimmysjolund (#18335) | Jimmy Sjölund | 2022-09-19 | 1 | -19/+21 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-09-18 | 1 | -1/+1 |
|\| | |||||
| * | Add home row modifiers to dshields keymaps. (#18376) | Daniel Shields | 2022-09-18 | 1 | -1/+1 |
| | | |||||
* | | Remove `UNICODE_KEY_OSX` and `UC_OSX` (#18290) | Ryan | 2022-09-06 | 3 | -3/+3 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-09-03 | 1 | -1/+1 |
|\| | |||||
| * | Remove more RESET keycode references (#18252) | Joel Challis | 2022-09-03 | 1 | -1/+1 |
| | | |||||
* | | Switch over MANUFACTURER and PRODUCT to string literals (#18183) | Ryan | 2022-08-28 | 1 | -2/+2 |
|/ | |||||
* | RESET -> QK_BOOT user keymaps (#17940) | Joel Challis | 2022-08-21 | 150 | -175/+175 |
| | |||||
* | Merge remote-tracking branch 'upstream/master' into develop | fauxpark | 2022-08-20 | 27 | -89/+80 |
|\ | |||||
| * | Move keyboard USB IDs and strings to data driven, pass 2: P-R (#18091) | Ryan | 2022-08-20 | 27 | -89/+80 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-08-07 | 2 | -9/+4 |
|\| | |||||
| * | csc027/keymap-updates (#17881) | csc027 | 2022-08-07 | 2 | -9/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Reverted to most usable configuration for RDP usage. * Added some HSV color definitions without the value portion to allow using the existing value. * Switched to using HSV and HS color definitions. * Added media keys to the convenience layer. * Updated make rules to enable media keys. * Cleaned up planck make rules. | ||||
* | | Remove `UNUSED_PINS` (#17931) | Nick Brassel | 2022-08-06 | 5 | -5/+0 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-08-03 | 5 | -0/+492 |
|\| | |||||
| * | Userspace: muppetjones (#1) (#13461) | Stephen J Bush | 2022-08-03 | 5 | -0/+492 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Userspace: muppetjones (#1) Add and update lily58 to work with userspace Add and update kyria keymap to work with userspace Add and update planck keymap with userspace Add etchamouse code and docs to userpace Add userspace Update mouse encoder for smoother movement. Encoder + mouse Added casemodes by andrewjrae * Rollback lily58 state reader and add missing GPL * Apply suggestions from code review Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com> * fix lily58 keymap * Updates to user and lily for muppetjones. Updated parameters for etchamouse for smoother mouse movement. Updated lily keymap and userspace to actually work together. * Update keyboards/lily58/keymaps/muppetjones/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Updated keymaps and userspace * Little more cleanup. * Update keyboards/lily58/keymaps/muppetjones/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Rollback accidental libchibios update * Apply suggestions from code review Co-authored-by: Drashna Jaelre <drashna@live.com> * Update kyria keymap * Move kyria keymap to splitkb/kyria * Update planck keymap * Remove all changes to keyboards/lily58/lib/layer_state_reader.c * Update lily58 keymap * Recommended change * Update keymap readme * Update kyria keymap and userspace * Apply suggestions from code review Co-authored-by: Drashna Jaelre <drashna@live.com> * Renamed users/muppetjones/README.md to lc * Update keyboards/lily58/keymaps/muppetjones/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com> | ||||
* | | Remove full bootmagic config (#17702) | Joel Challis | 2022-07-19 | 1 | -6/+0 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-07-17 | 11 | -13/+159 |
|\| | |||||
| * | Planck swap hand matrix for rev6, fixing issue #17388 (#17389) | Jens-Petter Sandvik | 2022-07-17 | 11 | -13/+159 |
| | | | | | | | | | | | | | | | | | | * Add correct hand_swap_config matrix for planck_rev6 and planck_rev6_drop * Make sure indentations are consistent * Make the rev6 hand_swap_config matrix the default, also correct for ez. * Move hand_swap_config matrix from planck.c to revision subdirectories | ||||
* | | [Core] Use polled waiting on ChibiOS platforms that support it (#17607) | Stefan Kerkmann | 2022-07-11 | 1 | -12/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use polled waiting on platforms that support it Due to context switching overhead waiting a very short amount of time on a sleeping thread is often not accurate and in fact not usable for timing critical usage i.e. in a driver. Thus we use polled waiting for ranges in the us range on platforms that support it instead. The fallback is the thread sleeping mechanism. This includes: * ARM platforms with CYCCNT register (ARMv7, ARMv8) this is incremented at CPU clock frequency * GD32VF103 RISC-V port with CSR_MCYCLE register this is incremented at CPU clock frequency * RP2040 ARMv6 port which uses the integrated timer peripheral which is incremented with a fixed 1MHz frequency * Use wait_us() instead of chSysPolledDelayX ...as it is powered by busy waiting now. * Add chibios waiting methods test bench | ||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-07-02 | 11 | -0/+384 |
|\| | |||||
| * | [Keymap] Add prog_qgmlwb keymap (#16890) | David Kristoffersen | 2022-07-02 | 11 | -0/+384 |
| | | |||||
* | | Merge remote-tracking branch 'upstream/master' into develop | Nick Brassel | 2022-07-02 | 4 | -74/+0 |
|\| | |||||
| * | Userspace and keymap update for user bbaserdem. (#14484) | Batuhan Baserdem | 2022-07-02 | 4 | -74/+0 |
| | | |||||
* | | Make default layer size 16-bit (#15286) | Drashna Jaelre | 2022-06-19 | 7 | -11/+11 |
| | | | | | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> | ||||
* | | tap-dance: Restructure code and document in more detail (#16394) | Jouke Witteveen | 2022-06-13 | 4 | -7/+31 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-06-10 | 3 | -0/+221 |
|\| | |||||
| * | [Keymap] Add planck/scottzach1 keymap (#17083) | Zac Scott | 2022-06-09 | 3 | -0/+221 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-06-03 | 1 | -0/+3 |
|\| | |||||
| * | Add Encoder Map Swap Hands config for boards that support both features (#17294) | Drashna Jaelre | 2022-06-03 | 1 | -0/+3 |
| | | |||||
* | | Removes terminal from QMK. (#17258) | Nick Brassel | 2022-05-30 | 5 | -13/+9 |
|/ | |||||
* | RESET -> QK_BOOT default keymaps (#17037) | Joel Challis | 2022-05-15 | 3 | -4/+4 |
| | |||||
* | Rename keymap_extras headers for consistency (#16939) | Ryan | 2022-05-15 | 2 | -2/+2 |
| | |||||
* | Add my planck layout (#13143) | Abhinav | 2022-04-19 | 4 | -0/+312 |
| | | | | | | | | | * Add my planck layout * Add copyright * Address requested changes * Fix dipswitch return type | ||||
* | [Keymap] corne and planck keyboards keymaps (#15570) | Anton | 2022-03-25 | 5 | -0/+515 |
| | | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> | ||||
* | [Keymap] Planck Keymap: tomkonidas (#15869) | Tom Konidas | 2022-03-15 | 4 | -0/+501 |
| | |||||
* | Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵ | Ryan | 2022-03-15 | 4 | -9/+0 |
| | | | | (#16655) | ||||
* | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-02-10 | 9 | -0/+1183 |
|\ | |||||
| * | [Keymap] submitting ariccb planck keymap (#16177) | Aric Crosson Bouwers | 2022-02-09 | 9 | -0/+1183 |
| | | | | | | Co-authored-by: Ryan <fauxpark@gmail.com> | ||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-02-07 | 1 | -17/+17 |
|\| | |||||
| * | [Keymap] Updated Planck layout - jimmysjolund (#16245) | Jimmy Sjölund | 2022-02-07 | 1 | -17/+17 |
| | | | | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> | ||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-02-06 | 2 | -1/+3 |
|\| | |||||
| * | [Keyboard] oryx rules.mk rgblight (#16229) | Boris Churzin | 2022-02-05 | 2 | -1/+3 |
| | | | | | | Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com> | ||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-01-29 | 1 | -3/+3 |
|\| | |||||
| * | [Keymap] Add media keys to default UT47.2 keymap (#15893) | Alex Grover | 2022-01-29 | 1 | -3/+3 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-01-29 | 1 | -0/+20 |
|\| | |||||
| * | Planck/Preonic - Enable default encoder behaviour on configurator (#16104) | Joel Challis | 2022-01-29 | 1 | -0/+20 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-01-12 | 4 | -0/+254 |
|\| | |||||
| * | [Keymap] Planck Keymap: Inkwell (#14311) | Kevin Hartley | 2022-01-12 | 4 | -0/+254 |
| | | | | | | Co-authored-by: Ryan <fauxpark@gmail.com> | ||||
* | | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | 2022-01-11 | 1 | -6/+15 |
|\| |