summaryrefslogtreecommitdiffstats
path: root/users/drashna
Commit message (Collapse)AuthorAgeFilesLines
* [Keymap] Drashna Keymap updates for 0.21.0 (#21073)Drashna Jaelre2023-05-3134-1758/+1253
|
* Make IGNORE_MOD_TAP_INTERRUPT the default behaviour for mod-taps (#20211)precondition2023-04-031-1/+0
|
* [Keymap] Drashna updates for 0.20.0 (#19960)Drashna Jaelre2023-02-2821-238/+332
|
* Reallocate SAFE_RANGE (#19909)Joel Challis2023-02-232-11/+3
|
* Remove matrix_init_quantum/matrix_scan_quantum (#19806)Joel Challis2023-02-111-1/+1
|
* Remove deprecated Quantum keycodes (#19712)Ryan2023-01-291-1/+1
|
* Tap Dance: remove `qk_` prefix (#19313)Ryan2022-12-142-4/+4
|
* Remove IGNORE_MOD_TAP_INTERRUPT_PER_KEY in favour of ↵precondition2022-12-132-16/+0
| | | | HOLD_ON_OTHER_KEY_PRESS_PER_KEY (#15741)
* [Core] Replace Tapping Force Hold feature with Quick Tap Term (#17007)Albert Y2022-12-122-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | * Replace Tapping Force Hold feature with Quick Tap Term * Replace keyboard level TAPPING_FORCE_HOLD with QUICK_TAP_TERM 0 * Deprecate force hold in info_config.json * Before and after quick tap term unit tests * Quick tap unit tests iteration * Keymap config.h correction * Remove TAPPING_FORCE_HOLD_PER_KEY macros that were missed * Add two more test cases for quick tap * Replace TAPPING_FORCE_HOLD with QUICK_TAP_TERM in configs #2 * Replace TAPPING_FORCE_HOLD_PER_KEY with QUICK_TAP_TERM_PER_KEY in configs #2 * Add function declaration for get_quick_tap_term Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
* [Keymap] Drashna updates for 0.19 (#19175)Drashna Jaelre2022-11-2914-145/+201
| | | | | | | | | | | | | | | | | | * Fix up bastardkb boards since blackpill support is officially added. * Check for blackpill version, not elite c. * Add checks in chibiOS config since multiple ARM controllers supported. * Rework rules.mk for keymaps to better handle arm vs avr support * Start moving away from `matrix_*_*` functions. * `housekeeping_task_*` instead of `matrix_scan_*` * `keyboard_(pre|post)_init_*` instead of `matrix_init_*` * Add ℂℴmⅈℂ unicode input method. * Clean up unicode code to be more compact and flexible. * Remove/move Pro Micro LED commands to userspace and better filter them * Fixup OLED code * Use newer quantum keycode functions/preprocessors rather than manual bit manipulation * Make unicode mode render much more compact/simple. * Make qmk secrets more self contained * Remove custom implementation of split watchdog
* Change `RGB_MATRIX_STARTUP_*` defines to `RGB_MATRIX_DEFAULT_*` (#19079)Ryan2022-11-271-1/+1
|
* Normalise Unicode keycodes (#18898)Ryan2022-10-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `UC_MOD`/`UC_RMOD` -> `UC_NEXT`/`UC_PREV` * `UNICODE_MODE_*` -> `QK_UNICODE_MODE_*` * `UC_MAC` -> `UNICODE_MODE_MACOS` * `UC_LNX` -> `UNICODE_MODE_LINUX` * `UC_WIN` -> `UNICODE_MODE_WINDOWS` * `UC_BSD` -> `UNICODE_MODE_BSD` * `UC_WINC` -> `UNICODE_MODE_WINCOMPOSE` * `UC_EMACS` -> `UNICODE_MODE_EMACS` * `UC__COUNT` -> `UNICODE_MODE_COUNT` * `UC_M_MA` -> `UC_MAC` * `UC_M_LN` -> `UC_LINX` * `UC_M_WI` -> `UC_WIN` * `UC_M_BS` -> `UC_BSD` * `UC_M_WC` -> `UC_WINC` * `UC_M_EM` -> `UC_EMAC` * Docs * Update quantum/unicode/unicode.h
* Normalise Autocorrect keycodes (#18893)Ryan2022-10-281-1/+1
|
* Remove `KC_DELT` (#18882)Ryan2022-10-271-2/+2
|
* Remove legacy keycodes, part 6 (#18740)Ryan2022-10-161-2/+2
| | | | | | | | | * `KC_RSHIFT` -> `KC_RSFT` * `KC_RCTRL` -> `KC_RCTL` * `KC_LSHIFT` -> `KC_LSFT` * `KC_LCTRL` -> `KC_LCTL`
* Remove RGBLIGHT_ANIMATION and clean up effect defines for layouts+users (#18729)Drashna Jaelre2022-10-151-1/+10
|
* Fix Per Key LED Indicator Callbacks (#18450)Drashna Jaelre2022-10-041-4/+5
| | | | Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
* Change `{LED,RGB}_DISABLE_TIMEOUT` to `{LED,RGB}_MATRIX_TIMEOUT` (#18415)Ryan2022-09-261-1/+0
|
* [Keymap] develop updates for Drashna Keymaps (#18472)Drashna Jaelre2022-09-2515-1029/+75
|
* Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan2022-09-231-2/+2
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-09-023-54/+60
|\
| * [Keymap] Fix bootmagic compilation issue with Drashna keymaps (#18223)Drashna Jaelre2022-09-023-54/+60
| |
* | Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-304-4/+4
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* [Keymap] Drashna keymap updates for 0.18.0 (#18184)Drashna Jaelre2022-08-2820-275/+492
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* [Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann2022-08-061-4/+0
| | | | `QMK_KEYS_PER_SCAN` (#15292)
* [Keymap] Updates to drashna Keymaps and Userspace (#17543)Drashna Jaelre2022-07-0219-465/+654
|
* [Keymap] Drashna update for post Q2 merge (#17241)Drashna Jaelre2022-05-3025-585/+510
|
* [Keymap] Drashna Mouse keys and oled updates (#16556)Drashna Jaelre2022-03-0615-384/+320
|
* [Keyboard] Overhaul Tractyl Manuform (#16134)Drashna Jaelre2022-01-302-3/+3
|
* [Keymap] Add oled improvements and cnano keymap for drashna (#16133)Drashna Jaelre2022-01-3011-178/+360
|
* [Keymap] Drashna's OLED rewrite (#15981)Drashna Jaelre2022-01-2116-131/+1730
|
* [Keymap] Reorganization, cleanup and readmes for drashna code (#15617)Drashna Jaelre2021-12-2947-819/+1154
|
* [Keymap] Unicode and Pointing Device and Autocorect for drashna keymaps (#15415)Drashna Jaelre2021-12-1433-41/+751
|
* [Keymap] Unicode and cursor sync - drashna keymap (#15328)Drashna Jaelre2021-11-287-49/+336
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-174-8/+25
|\
| * [Keymap] updates for oled, and diablo 2 layer - Drashna (#15194)Drashna Jaelre2021-11-174-8/+25
| |
* | Require explicit enabling of RGB Matrix modes (#15018)Drashna Jaelre2021-11-151-47/+96
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-104-31/+670
|\|
| * Updates to drashna keymap and minor updates to tractyl manuform (#15101)Drashna Jaelre2021-11-104-31/+670
| |
* | [Keymap] Fix missing return for oled task in drashna userspace (#15012)Drashna Jaelre2021-11-021-1/+1
| |
* | [Core] Change OLED task function to be boolean (#14864)Drashna Jaelre2021-11-021-1/+2
|/ | | | | | | | | | | | | * [Core] Add kb level callbacks to OLED driver * Update keyboards and keymaps * Update docs * Update userspace configs * Add fix for my keymap ... * update lefty
* [Keymap] Drashna Keymap Updates (#14842)Drashna Jaelre2021-10-157-1019/+762
| | | | | | | * Fix issues with user split transport code * Improve OLED (More font stuff, improved keylogger, etc) * Add `KEYLOCK` macro to disable USB, borrowed from command feature. * Convert Kyria fully to proton C (no more AVR kyria) * Add Work Louder Work Board keymap
* [Keymap] Update to Drashna Code (#14644)Drashna Jaelre2021-09-295-47/+43
|
* [Keymap] Fix Drashna Keymap issues missed before Develop merge (#14271)Drashna Jaelre2021-09-013-105/+113
|
* [Keymap] Drashna keymap fixups (#14140)Drashna Jaelre2021-08-243-13/+7
|
* [Core] Refactor OLED to allow easy addition of other types (#13454)Xelus222021-08-247-7/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add docs * core changes * update keyboards to new OLED * updated users to new OLED * update layouts to new OLED * fixup docs * drashna's suggestion * fix up docs * new keyboards with oled * core split changes * remaining keyboard files * Fix The Helix keyboards oled options * reflect develop Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: mtei <2170248+mtei@users.noreply.github.com>
* [Keymap] Drashna's Improve OLEDs and custom Split code (#14063)Drashna Jaelre2021-08-2113-309/+303
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fill the oleds with right mods * Enable double mods on x32 oleds * Disable forced NKRO * Make oleds fancy only on good MCUs * Overhaul oled display * Further enhance oled, with kitty! * Final oled form * Not working transport * Transport id of woring * Add acceleration * fix button placement for accel macro * Fix accelartion location and behavior * Remove OLED sync code * Fix alignment issue * Remove audio hack * Fix up zima keymap * Add matrix slave scan function and cleanup drashna.h * Clean up user space * Allow userspace sync to be disable-able * Fix weird issue with audio * Fix alignment issue with user split sync * Disable second rgb matrix task * Disable additional animations * Change dynamic keymap settings * Hacky fix for borked corne * Add Blackpill (F411) support to tractyl manuform * remove manual via eeprom reset * Remove all references to rgblight twinkle * Fix issues with config processing
* [Keymap] Drashna split transport improvement (#13905)Drashna Jaelre2021-08-074-30/+142
| | | | | | | | | | | | | | | | | | | | | | | | | * Fix up split stuff * Fix Split perf issues * Allow LTO to be disabled * Fixup WPM and encoders * Fixup qmk keys per scan * Add bootloader info * Change encoder pins * Fixup corne oled code * Expand transport sync * Improve user transport * Cleanup mouse processing at keymap level * Improve layer checking for mouse layering
* [Keymap] Drashna's Defaults cleanup (#13722)Drashna Jaelre2021-07-2617-448/+435
|
* Drashna's split updates (#13350)Drashna Jaelre2021-07-0118-1003/+523
| | | Co-authored-by: Ryan <fauxpark@gmail.com>