summaryrefslogtreecommitdiff
path: root/users/curry
AgeCommit message (Collapse)Author
2023-09-04Clean up RGB LED type (#21859)Ryan
2023-07-06Get rid of `USB_LED_CAPS_LOCK` (#21436)Ryan
2023-07-02Get rid of `USB_LED_SCROLL_LOCK` (#21405)Ryan
2023-04-03Make IGNORE_MOD_TAP_INTERRUPT the default behaviour for mod-taps (#20211)precondition
2023-02-13Refactor Leader key feature (#19632)Ryan
Co-authored-by: Drashna Jaelre <drashna@live.com>
2023-01-29Remove deprecated Quantum keycodes (#19712)Ryan
2022-12-14Tap Dance: remove `qk_` prefix (#19313)Ryan
2022-11-15Fix some old keycodes (#19086)Ryan
2022-10-27Remove rgblight_list.h (#18878)Ryan
* 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
2022-10-15Remove RGBLIGHT_ANIMATION and clean up effect defines for layouts+users (#18729)Drashna Jaelre
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-23Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan
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-06[Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann
`QMK_KEYS_PER_SCAN` (#15292)
2022-04-19Fix broken build for users/curry (#16492)Allen Choi
2021-11-15Require explicit enabling of RGB Matrix modes (#15018)Drashna Jaelre
2021-11-02[Core] Change OLED task function to be boolean (#14864)Drashna Jaelre
* [Core] Add kb level callbacks to OLED driver * Update keyboards and keymaps * Update docs * Update userspace configs * Add fix for my keymap ... * update lefty
2021-08-24[Core] Refactor OLED to allow easy addition of other types (#13454)Xelus22
* 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>
2021-06-09Fix RGB/LED Suspend defines (#13146)Drashna Jaelre
2021-05-14Deprecate `send_unicode_hex_string()` (#12602)Ryan
2020-01-23Local ChangesAkaash Suresh
2020-01-09[Keymap] Userspace refactor, adding leader key functionality (#7790)Akaash Suresh
* Userspace refactor * Fixed missed ifdef * tapcode16, adjust layout * glcdfont changes from #7745 * Modify Keymaps, add workman * RGB & OLED update
2020-01-03Fixed formatting and added font fileAkaash Suresh
2020-01-02Removing unnecessary struct definitionsCurryFurious
Removed userspace_config unused variables, and removed _NUMLOCK as it isn't used anywhere.
2020-01-02FormattingAkaash Suresh
2020-01-02Added license and readmeAkaash Suresh
2020-01-02Merge upstream/master with userspaceAkaash Suresh