summaryrefslogtreecommitdiffstats
path: root/users/curry
Commit message (Collapse)AuthorAgeFilesLines
* Make IGNORE_MOD_TAP_INTERRUPT the default behaviour for mod-taps (#20211)precondition2023-04-031-1/+0
|
* Refactor Leader key feature (#19632)Ryan2023-02-134-25/+32
| | | | Co-authored-by: Drashna Jaelre <drashna@live.com>
* Remove deprecated Quantum keycodes (#19712)Ryan2023-01-291-1/+1
|
* Tap Dance: remove `qk_` prefix (#19313)Ryan2022-12-141-1/+1
|
* Fix some old keycodes (#19086)Ryan2022-11-151-1/+1
|
* Remove rgblight_list.h (#18878)Ryan2022-10-271-1/+1
| | | | | | | | | | | * Remove rgblight_list defines with no usage * Remove rgblight_setrgb_*[_at] defines * Remove rgblight_sethsv_* defines * Remove rgblight_sethsv_noeeprom_* defines * Delete rgblight_list.h and remove all references
* Remove RGBLIGHT_ANIMATION and clean up effect defines for layouts+users (#18729)Drashna Jaelre2022-10-151-1/+7
|
* Fix Per Key LED Indicator Callbacks (#18450)Drashna Jaelre2022-10-041-1/+2
| | | | Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
* Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan2022-09-231-2/+2
|
* Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* [Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann2022-08-061-4/+0
| | | | `QMK_KEYS_PER_SCAN` (#15292)
* Fix broken build for users/curry (#16492)Allen Choi2022-04-197-9/+56
|
* Require explicit enabling of RGB Matrix modes (#15018)Drashna Jaelre2021-11-151-36/+36
|
* [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
* [Core] Refactor OLED to allow easy addition of other types (#13454)Xelus222021-08-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Fix RGB/LED Suspend defines (#13146)Drashna Jaelre2021-06-091-1/+1
|
* Deprecate `send_unicode_hex_string()` (#12602)Ryan2021-05-141-8/+8
|
* Local ChangesAkaash Suresh2020-01-232-7/+7
|
* [Keymap] Userspace refactor, adding leader key functionality (#7790)Akaash Suresh2020-01-0919-422/+409
| | | | | | | | | | | | | | * Userspace refactor * Fixed missed ifdef * tapcode16, adjust layout * glcdfont changes from #7745 * Modify Keymaps, add workman * RGB & OLED update
* Fixed formatting and added font fileAkaash Suresh2020-01-032-0/+243
|
* Removing unnecessary struct definitionsCurryFurious2020-01-021-4/+0
| | | Removed userspace_config unused variables, and removed _NUMLOCK as it isn't used anywhere.
* FormattingAkaash Suresh2020-01-021-3/+4
|
* Added license and readmeAkaash Suresh2020-01-022-0/+43
|
* Merge upstream/master with userspaceAkaash Suresh2020-01-0214-0/+1436