summaryrefslogtreecommitdiffstats
path: root/keyboards/lfkeyboards
Commit message (Collapse)AuthorAgeFilesLines
* Remove .noci functionality (#19122)Joel Challis2022-11-217-0/+0
|
* Reworked backlight keycodes. (#18961)Nick Brassel2022-11-0611-16/+16
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* 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 legacy Grave Escape keycodes (#18787)Ryan2022-10-2011-12/+12
|
* Remove quantum/audio from global VPATH (#18753)Ryan2022-10-202-2/+4
|
* Remove legacy Debug keycode (#18769)Ryan2022-10-191-1/+1
| | | | | | | | | | | * `DEBUG` -> `DB_TOGG`, default-ish keymaps * `DEBUG` -> `DB_TOGG`, user keymaps * `DEBUG` -> `DB_TOGG`, community layouts * `DEBUG` -> `DB_TOGG`, userspace * `DEBUG` -> `DB_TOGG`, docs & core
* Remove legacy keycodes, part 5 (#18710)Ryan2022-10-157-11/+11
| | | | | * `KC_SLCK` -> `KC_SCRL` * `KC_NLCK` -> `KC_NUM`
* Remove RGBLIGHT_ANIMATION and clean up effect defines for L-Q (#18727)Drashna Jaelre2022-10-157-18/+62
|
* Change `{LED,RGB}_DISABLE_TIMEOUT` to `{LED,RGB}_MATRIX_TIMEOUT` (#18415)Ryan2022-09-261-1/+1
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-09-035-5/+5
|\
| * Remove more RESET keycode references (#18252)Joel Challis2022-09-035-5/+5
| |
* | Ensure all keyboards have a bootloader set (#18234)Ryan2022-08-311-4/+1
| |
* | 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>
* RESET -> QK_BOOT user keymaps (#17940)Joel Challis2022-08-216-6/+6
|
* Merge remote-tracking branch 'origin/master' into developDrashna Jael're2022-08-203-3/+3
|\
| * RESET -> QK_BOOT keyboard readme (#18110)Joel Challis2022-08-203-3/+3
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2022-08-205-15/+16
|\|
| * Move keyboard USB IDs and strings to data driven, pass 2: J-L (#18080)Ryan2022-08-205-15/+16
| |
* | Remove `UNUSED_PINS` (#17931)Nick Brassel2022-08-069-13/+0
| |
* | [Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann2022-08-061-3/+0
|/ | | | `QMK_KEYS_PER_SCAN` (#15292)
* Move keyboard USB IDs and strings to data driven: L (#17849)Ryan2022-08-0212-36/+46
|
* RESET -> QK_BOOT default keymaps (#17037)Joel Challis2022-05-1510-12/+12
|
* Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵Ryan2022-03-157-21/+1
| | | | (#16655)
* [Keyboard] LFK78 VIA support and Update (#16502)Matthew Bautista2022-03-076-5/+80
|
* Merge remote-tracking branch 'upstream/master' into developNick Brassel2022-02-0913-122/+229
|\
| * LFKeyboards Mini1800: refactor into revisions (#16260)James Young2022-02-0713-122/+229
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fork Mini1800 into reva and revc versions * update info.json - apply friendly formatting - update maintainer value * update keymap rules.mk formatting - align inline comments - convert tabs to spaces * align keymap rules.mk files to QMK template * move common keymap rules.mk settings to revision level * info.json: correct key sequence * align revision rules.mk files to QMK template * clean up revision rules.mk files * add readme files for each revision * correct USB Product string * remove post_rules.mk files The internal settings were commented out, so the files actually don't do anything. * edit Bootloader instructions on main readme * move non-assignment rules to post_rules.mk * add inline comments for NKRO_ENABLE per fauxpark
* | Remove `action_function()` from LFKeyboards boards (#15993)Ryan2022-01-2221-1161/+721
|/
* Remove unnecessary backslash-escapes in default keymaps (#15472)Ryan2021-12-144-69/+69
| | | | | | | * Remove unnecessary backslash-escapes in default keymaps * Remove unnecessary backslash-escapes in via keymaps * Remove unnecessary backslash-escapes in default-ish keymaps
* Tidy up NKRO_ENABLE rules (#15382)Ryan2021-12-0911-13/+11
|
* Remove empty config.h from default-ish keymaps (#15429)Ryan2021-12-096-38/+0
|
* Remove references to Makefile in keyboard-level rules.mk (#15427)Ryan2021-12-078-38/+1
|
* Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan2021-12-0111-17/+10
|
* Remove `BOOTMAGIC_ENABLE = lite` option (#15002)James Young2021-11-052-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * remove BOOTMAGIC_ENABLE=lite setting * change keyboard BOOTMAGIC_ENABLE rules Edits keyboard-level instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`. * change keyboard BOOTMAGIC_ENABLE inline comments Edits keyboard-level BOOTMAGIC_ENABLE inline comments to "Enable Bootmagic Lite". * change keymap BOOTMAGIC_ENABLE rules Edits keymap-level instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`. * change keymap BOOTMAGIC_ENABLE inline comments Edits/adds keymap-level BOOTMAGIC_ENABLE inline comments to read "Enable Bootmagic Lite". * change layout/user BOOTMAGIC_ENABLE rules/comments Edits instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`. Edits/adds keymap-level BOOTMAGIC_ENABLE inline comments to read "Enable Bootmagic Lite". * update non-rules.mk BOOTMAGIC_ENABLE references in keyboards/ * remove docs references to Full Bootmagic * convert data-driven Bootmagic Lite instances * remove Bootmagic Lite bodge from data-driven generation * Merge remote-tracking branch 'upstream/develop' into rm/bootmagic-full_q4a * update docs/ja/config_options.md per mtei * update docs/faq_misc.md per mtei Remove remaining Full Bootmagic reference.
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-303-3/+0
|\
| * Remove redundant `MIDI_ENABLE = no` in keyboard-level rules.mk (#14649)Ryan2021-09-303-3/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developJames Young2021-09-296-6/+0
|\|
| * Remove redundant `UNICODE_ENABLE = no` in keyboard-level rules.mk (#14633)Ryan2021-09-306-6/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developJames Young2021-09-265-250/+0
|\|
| * Remove unused `IS_COMMAND()` instances and Magic Key definitions (#14610)James Young2021-09-265-250/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove unused IS_COMMAND() instances from keyboard-level config.h, 0-9 * Remove unused IS_COMMAND() instances from keyboard-level config.h, A-B * Remove unused IS_COMMAND() instances from keyboard-level config.h, C-D * Remove unused IS_COMMAND() instances from keyboard-level config.h, E-G * Remove unused IS_COMMAND() instances from keyboard-level config.h, handwired * Remove unused IS_COMMAND() instances from keyboard-level config.h, H-M * Remove unused IS_COMMAND() instances from keyboard-level config.h, N-R * Remove unused IS_COMMAND() instances from keyboard-level config.h, S-Z * Remove unused Magic Key definitions from keyboard-level config.h, 0-9 * Remove unused Magic Key definitions from keyboard-level config.h, A * Remove unused Magic Key definitions from keyboard-level config.h, B * Remove unused Magic Key definitions from keyboard-level config.h, C * Remove unused Magic Key definitions from keyboard-level config.h, D-E * Remove unused Magic Key definitions from keyboard-level config.h, F-H * Remove unused Magic Key definitions from keyboard-level config.h, handwired * Remove unused Magic Key definitions from keyboard-level config.h, I-K * Remove unused Magic Key definitions from keyboard-level config.h, L-M * Remove unused Magic Key definitions from keyboard-level config.h, N-R * Remove unused Magic Key definitions from keyboard-level config.h, S-V * Remove unused Magic Key definitions from keyboard-level config.h, W-Z * Merge remote-tracking branch 'upstream/master' into clean/command_and_magic * Remove remaining unused IS_COMMAND() instances from keyboard-level config.h
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-213-3/+0
|\|
| * Remove keyboard-level `TAP_DANCE_ENABLE` rules (#14538)Ryan2021-09-213-3/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-09-216-6/+6
|\|
| * Remove audio pin references in rules.mk (#14532)Ryan2021-09-216-6/+6
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-124-4/+0
|\|
| * Remove BLUETOOTH_ENABLE from keyboard-level rules.mk (#14379)Ryan2021-09-124-4/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-09-128-17/+1
|\|
| * Remove width, height and key_count from info.json (#14274)Ryan2021-09-128-17/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-103-3/+0
|\|
| * Remove BLUETOOTH_ENABLE from defaultish keymaps (#14375)Ryan2021-09-103-3/+0
| |
* | Move non-assignment code to post_rules.mk (#14207)Zach White2021-09-098-47/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 40percentclub/ut47: move non-assignment code to post_rules.mk * converter/palm_usb: move non-assignment code to post_rules.mk * converter/sun_usb: move non-assignment code to post_rules.mk * dm9records/ergoinu: move non-assignment code to post_rules.mk * ergotaco: move non-assignment code to post_rules.mk * handwired/symmetric70_proto: move non-assignment code to post_rules.mk * hhkb/ansi: move non-assignment code to post_rules.mk * hhkb/jp: move non-assignment code to post_rules.mk * lfkeyboards/lfk78: move non-assignment code to post_rules.mk * lfkeyboards/lfk87: move non-assignment code to post_rules.mk * lfkeyboards/lfkpad: move non-assignment code to post_rules.mk * lfkeyboards/mini1800: move non-assignment code to post_rules.mk * manta60: move non-assignment code to post_rules.mk * mschwingen/modelm: move non-assignment code to post_rules.mk * newgame40: move non-assignment code to post_rules.mk * numatreus: move non-assignment code to post_rules.mk * rgbkb/zen: move non-assignment code to post_rules.mk * rgbkb/zen/rev2: move non-assignment code to post_rules.mk * Revert "handwired/symmetric70_proto: move non-assignment code to post_rules.mk" This reverts commit cffaf0075c3c9b2473a660ba4af8835a9162311b.