summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2025-11-30Merge remote-tracking branch 'origin/master' into developQMK Bot1-2/+1
2025-11-30[CI] Format code according to conventions (#25827)QMK Bot1-2/+1
Format code according to conventions
2025-11-23Reduce tap dance memory usage, move state out of data (#25415)Stephen Ostermiller1-1/+3
* Use less tap dance memory. Use dynamically allocated sparse array for tap dance state, dynamically allocate tap dance state when needed and free it when the tap dance is done. * new approach * Use null, check for null * Reformat with docker * Use uint8 with idx rather than uint16 with keycode in state * fix accidental change * reformat * Add null check * add documentation tip suggested by tzarc * Only allow tap dance state allocation on key down, not on key up Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * Only allow tap dance allocation on key down, not on key up Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * add user action required section --------- Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2025-11-23[CI] Format code according to conventions (#25820)QMK Bot1-2/+2
2025-11-23Fix single key combos activating only once (#25198)Julian Schuler2-2/+19
Co-authored-by: Julian Schuler <julianschuler@users.noreply.github.com>
2025-11-23[Bug][Core] Fix Speculative Hold to enable also right-handed RSFT, RCTL by ↵Pascal Getreuer6-284/+416
default. (#25797)
2025-11-11[Core] Speculative Hold option for mod-taps: hold mods instantly while ↵Pascal Getreuer13-0/+3416
unsettled. (#25572)
2025-07-11Remove deprecated `RGB_` and Mouse keycodes (#25444)Ryan1-1/+1
* Remove deprecated `RGB_` and Mouse keycodes * Update old mouse keycodes, 0-9/A-M * Update old mouse keycodes, N-Z & layouts * Missed some stuff
2025-06-14Add core handling for pointing device failures. (#25315)Dasky2-1/+22
2025-04-28[Core] Enhance Flow Tap to work better for rolls over multiple tap-hold ↵Pascal Getreuer6-1/+1350
keys. (#25200) * Flow Tap revision for rolling press. * Remove debugging cruft. * Formatting fix.
2025-04-22[Bug][Core] Fix for Flow Tap: fix handling of distinct taps and timer ↵Pascal Getreuer2-1/+331
updates. (#25175) * Flow Tap bug fix. As reported by @amarz45 and @mwpardue, there is a bug where if two tap-hold keys are pressed in distinct taps back to back, then Flow Tap is not applied on the second tap-hold key, but it should be. In a related bug reported by @NikGovorov, if a tap-hold key is held followed by a tap of a tap-hold key, then Flow Tap updates its timer on the release of the held tap-hold key, but it should be ignored. The problem common to both these bugs is that I incorrectly assumed `tapping_key` is cleared to noevent once it is released, when actually `tapping_key` is still maintained for `TAPPING_TERM` ms after release (for Quick Tap). This commit fixes that. Thanks to @amarz45, @mwpardue, and @NikGovorov for reporting! Details: * Logic for converting the current tap-hold event to a tap is extracted to `flow_tap_key_if_within_term()`, which is now invoked also in the post-release "interfered with other tap key" case. This fixes the distinct taps bug. * The Flow Tap timer is now updated at the beginning of each call to `process_record()`, provided that there is no unsettled tap-hold key at that time and that the record is not for a mod or layer switch key. By moving this update logic to `process_record()`, it is conceptually simpler and more robust. * Unit tests extended to cover the reported scenarios. * Fix formatting. * Revision to fix @NikGovorov's scenario. The issue is that when another key is pressed while a layer-tap hasn't been settled yet, the `prev_keycode` remembers the keycode from before the layer switched. This can then enable Flow Tap for the following key when it shouldn't, or vice versa. Thanks to @NikGovorov for reporting! This commit revises Flow Tap in the following ways: * The previous key and timer are both updated from `process_record()`. This is slightly later in the sequence of processing than before, and by this point, a just-settled layer-tap should have taken effect so that the keycode from the correct layer is remembered. * The Flow Tap previous key and timer are updated now also on key release events, except for releases of modifiers and held layer switches. * The Flow Tap previous key and timer are now updated together, for simplicity. This makes the logic easier to think about. * A few additional unit tests, including @NikGovorov's scenario as "layer_tap_ignored_with_disabled_key_complex."
2025-04-19Ignore the Layer Lock key in Repeat Key and Caps Word. (#25171)Pascal Getreuer4-7/+81
2025-04-14[Core] Flow Tap tap-hold option to disable HRMs during fast typing (#25125)Pascal Getreuer4-0/+376
aka Global Quick Tap, Require Prior Idle
2025-03-21Non-volatile memory data repository pattern (#24356)Nick Brassel1-1/+1
* First batch of eeconfig conversions. * Offset and length for datablocks. * `via`, `dynamic_keymap`. * Fix filename. * Commentary. * wilba leds * satisfaction75 * satisfaction75 * more keyboard whack-a-mole * satisfaction75 * omnikeyish * more whack-a-mole * `generic_features.mk` to automatically pick up nvm repositories * thievery * deferred variable resolve * whitespace * convert api to structs/unions * convert api to structs/unions * convert api to structs/unions * fixups * code-side docs * code size fix * rollback * nvm_xxxxx_erase * Updated location of eeconfig magic numbers so non-EEPROM nvm drivers can use them too. * Fixup build. * Fixup compilation error with encoders. * Build fixes. * Add `via_ci` keymap to onekey to exercise VIA bindings (and thus dynamic keymap et.al.), fixup compilation errors based on preprocessor+sizeof. * Build failure rectification.
2025-03-21[Core] use `keycode_string` in unit tests (#25042)Stefan Kerkmann11-966/+17
* tests: use keycode_string feature With a proper keycode to string implementation in qmk there is no need to use the unit tests only implementation anymore. Signed-off-by: Stefan Kerkmann <karlk90@pm.me> * tests: remove keycode_util feature This feature is no longer used as we switched the tests to the keycode string implementation. Signed-off-by: Stefan Kerkmann <karlk90@pm.me>
2025-03-19[Core] get_keycode_string(): function to format keycodes as strings, for ↵Pascal Getreuer3-0/+194
more readable debug logging. (#24787) * keycode_string(): Format keycodes as strings. This adds the `keycode_string()` function described in https://getreuer.info/posts/keyboards/keycode-string/index.html as a core feature. * Fix formatting. * keycode_string review revisions. * Rename keycode_string() -> get_keycode_string() for consistency with existing string utils like get_u8_str(). * Revise custom keycode names with separate _user and _kb tables. * Correct indent in builddefs/generic_features.mk. Co-authored-by: Ryan <fauxpark@gmail.com> * Add KC_NUHS, KC_NUBS, and KC_CAPS. * Fix linking error with custom names. * Attempt at simplifying interface. * Formatting fix. * Several fixes and revisions. * Don't use PSTR in KEYCODE_STRING_NAME, since this fails to build on AVR. Store custom names in RAM. * Revise the internal table of common keycode names to use its own storage representation, still in PROGMEM, and now more efficiently stored flat in 8 bytes per entry. * Support Swap Hands keycodes and a few other keycodes. * Revert "Formatting fix." This reverts commit 2a2771068c7ee545ffac4103aa07e847a9ec3816. * Revert "Attempt at simplifying interface." This reverts commit 8eaf67de76e75bc92d106a8b0decc893fbc65fa5. * Simplify custom names API by sigprof's suggestion. * Support more keycodes. * Add QK_LOCK keycode. * Add Secure keycodes. * Add Joystick keycodes. * Add Programmable Button keycodes. * Add macro MC_ keycodes. * For remaining keys in known code ranges, stringify them as "QK_<feature>+<number>". For instance, "QK_MIDI+7". * Bug fix and a few improvements. * Fix missing right-hand bit when displaying 5-bit mods numerically. * Support KC_HYPR, KC_MEH, HYPR_T(kc), MEH_T(kc). * Exclude one-shot keycodes when NO_ACTION_ONESHOT is defined. --------- Co-authored-by: Ryan <fauxpark@gmail.com>
2025-03-06Add EOL to non-keyboard files (#24990)Joel Challis3-3/+3
2025-02-16Retro Tapping Re-Write; Key Roll Fix (#23641)John1-0/+408
2025-02-16Chaining OSL and MO (#23065)DavidSannier1-1/+335
2025-01-30[Bug][Core] Fix for Chordal Hold: stuck mods when mod-taps are pressed in a ↵Pascal Getreuer2-1/+87
stuttered sequence. (#24878)
2025-01-27[Core] Add Chordal Hold, an "opposite hands rule" tap-hold option similar to ↵Pascal Getreuer18-0/+2981
Achordion, Bilateral Combinations. (#24560) * Chordal Hold: restrict what chords settle as hold * Chordal Hold: docs and further improvements * Fix formatting. * Doc rewording and minor edit. * Support Chordal Hold of multiple tap-hold keys. * Fix formatting. * Simplification and additional test. * Fix formatting. * Tighten tests. * Add test two_mod_taps_same_hand_hold_til_timeout. * Revise handing of pairs of tap-hold keys. * Generate a default chordal_hold_layout. * Document chordal_hold_handedness(). * Add license notice to new and branched files in PR. * Add `tapping.chordal_hold` property for info.json. * Update docs/reference_info_json.md * Revise "hand" jsonschema. * Chordal Hold: Improved layout handedness heuristic. This commit improves the heuristic used in generate-keyboard-c for inferring key handedness from keyboard.json geometry data. Heuristic summary: 1. If the layout is symmetric (e.g. most split keyboards), guess the handedness based on the sign of (x - layout_x_midpoint). 2. Otherwise, if the layout has a key of >=6u width, it is probably the spacebar. Form a dividing line through the spacebar, nearly vertical but with a slight angle to follow typical row stagger. 3. Otherwise, assume handedness based on the widest horizontal separation. I have tested this strategy on a couple dozen keyboards and found it to work reliably. * Use Optional instead of `| None`. * Refactor to avoid lambdas. * Remove trailing comma in chordal_hold_layout. * Minor docs edits. * Revise to allow combining multiple same-hand mods. This commit revises Chordal Hold as described in discussion in https://github.com/qmk/qmk_firmware/pull/24560#discussion_r1894655238 1. In "RCTL_T(KC_A)↓, RSFT_T(KC_C)↓, RCTL_T(KC_A)↑" before the tapping term, RCTL_T(KC_A) is settled as tapped. 2. In "RCTL_T(KC_A)↓, RSFT_T(KC_C)↓, RSFT_T(KC_C)↑", both RCTL_T(KC_A) and RSFT_T(KC_C) are settled as tapped. 3. In "RCTL_T(KC_A)↓, RSFT_T(KC_C)↓, KC_U↓" (all keys on the same side), both RCTL_T(KC_A) and RSFT_T(KC_C) are settled as tapped. 4. In "RCTL_T(KC_A)↓, RSFT_T(KC_C)↓, LSFT_T(KC_T)↓", with the third key on the other side, we allow Permissive Hold or Hold On Other Keypress to decide how/when to settle the keys. 5. In "RCTL_T(KC_A)↓, RSFT_T(KC_C)↓" held until the tapping term, the keys are settled as held. 1–3 provide same-hand roll protection. 4–5 are for combining multiple same-hand modifiers. I've updated the unit tests and have been running it on my keyboard, for a few hours so far, and all seems good. I really like this scheme. It allows combining same-side mods, yet it also has roll protection on streaks. For me, this feels like Achordion, but clearly better streak handling and improved responsiveness. * Fix formatting. * Add a couple tests with LT keys. * Remove stale use of CHORDAL_HOLD_LAYOUT. * Fix misspelling lastest -> latest * Handling tweak for LTs and tests. * Fix formatting. * More tests with LT keys. * Fix formatting.
2025-01-01[CI] Regenerate Files (#24770)QMK Bot1-1/+1
Regenerate Files
2024-11-23Add pointing tests (#24513)Dasky28-0/+915
2024-11-23[Feature] Add keycode PDF(layer) to set the default layer in EEPROM (#24630)Joel Challis1-0/+2
* [Feature] Add keycode PDF(layer) to set the default layer in EEPROM (#21881) * Apply suggestions from code review Co-authored-by: Nick Brassel <nick@tzarc.org> --------- Co-authored-by: Nebuleon <2391500+Nebuleon@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2024-11-21[Core] Add Layer Lock feature (#23430)Drashna Jaelre4-0/+301
Co-authored-by: Daniel <1767914+iamdanielv@users.noreply.github.com> Co-authored-by: Pascal Getreuer <getreuer@google.com> Co-authored-by: Pascal Getreuer <50221757+getreuer@users.noreply.github.com>
2024-11-14Revert removal of `QK_OUTPUT_AUTO`, fixup docs to reflect. (#24593)Nick Brassel1-0/+1
2024-09-24Remove `RING_BUFFERED_6KRO_REPORT_ENABLE` due to disuse. (#24433)Nick Brassel1-2/+0
2024-09-05Add combo key repress feature (#22858)Filios924-0/+217
Co-authored-by: jack <jack@pngu.org>
2024-08-27Add new connection keycodes for Bluetooth, 2.4GHz. (#24251)Nick Brassel1-3/+14
2024-07-06Tap dance introspection (#24049)Nick Brassel3-4/+4
2024-07-03Normalise mouse keycodes (#23975)Ryan1-19/+19
2024-05-13Merge remote-tracking branch 'origin/master' into developQMK Bot4-1/+108
2024-05-13Add housekeeping execution to unit tests (#22999)leep-frog4-1/+108
2024-05-07Normalise RGBLight (underglow) keycodes (#23656)Ryan1-11/+11
2024-05-04Add new set of keycodes for RGB Matrix (#23463)Ryan1-0/+13
2024-04-30Refactoring successive press() -> release() calls (#23573)DavidSannier1-40/+10
2024-04-11Add new set of keycodes for LED Matrix (#23432)Ryan1-0/+9
2024-01-09Ignore space cadet key release when caps word is active (#21721)Paul Landers1-3/+3
2024-01-01Update copyright year on generated files (#22795)QMK Bot1-1/+1
2023-12-24Align location of tap dance keycode (#22742)Joel Challis1-1/+1
2023-10-23Separate 6KRO and NKRO report structs (#22267)Ryan3-3/+9
2023-09-25Fix OSM on a OSL activated layer (#20410)NapOli10841-0/+46
2023-09-25Improve test invocation, fix Retro Shift bugs, and add Auto+Retro Shift test ↵Isaac Elenbaas39-9/+2482
cases (#15889)
2023-08-27Unicode, Unicodemap and UCIS refactor (#21659)Ryan13-2/+446
2023-07-26On-each-release tap dance function (#20255)leep-frog3-1/+141
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2023-07-08[Core] Simplify audio_duration_to_ms() and audio_ms_to_duration(), reduce ↵Pascal Getreuer3-0/+152
firmware size by a few bytes. (#21427)
2023-07-08[Feature] Send a dummy keycode to neutralize flashing modifiers in retro tap ↵precondition2-1/+205
and key overrides (#20992)
2023-06-01Unicodemap keycodes rename (#21092)Ryan1-2/+2
2023-05-20[Bug] Fix issue with Repeat Key-Combo test (#21005)Drashna Jaelre3-7/+9
2023-05-20[Core] Add Repeat Key ("repeat last key") as a core feature. (#19700)Pascal Getreuer11-0/+1468
Co-authored-by: casuanoob <96005765+casuanoob@users.noreply.github.com> Co-authored-by: Sergey Vlasov <sigprof@gmail.com>