summaryrefslogtreecommitdiffstats
path: root/keyboards/dm9records
Commit message (Collapse)AuthorAgeFilesLines
* Merge upstream master to 2022 Q4 breaking changelokher2022-12-0712-2209/+0
|
* Merge upstream masterlokher2022-12-0612-0/+2209
|\
| * Update use of legacy keycodes (#19120)Joel Challis2022-11-223-6/+6
| |
| * Remove .noci functionality (#19122)Joel Challis2022-11-211-0/+0
| |
| * Normalise Space Cadet keycodes (#18864)Ryan2022-10-272-4/+4
| |
| * Remove legacy keycodes, part 5 (#18710)Ryan2022-10-155-5/+5
| | | | | | | | | | * `KC_SLCK` -> `KC_SCRL` * `KC_NLCK` -> `KC_NUM`
| * Remove RGBLIGHT_ANIMTION and clean up effect defines for 0-F (#18725)Drashna Jaelre2022-10-152-24/+0
| |
| * Remove legacy keycodes, part 3 (#18669)Ryan2022-10-111-2/+2
| | | | | | | | | | | | | | | | | | * `KC__VOLDOWN` -> `KC_VOLD` * `KC__VOLUP` -> `KC_VOLU` * `KC__MUTE` -> `KC_MUTE` * `KC_POWER` -> `KC_PWR`
| * Remove legacy international keycodes (#18588)Ryan2022-10-091-6/+6
| |
| * Remove remaining use of terminal keys and related comment labels (#18402)Johannes Löthberg2022-09-292-2/+2
| |
| * Remove legacy USE_SERIAL define (#18292)Dasky2022-09-061-2/+0
| | | | | | | | | | * Remove legacy USE_SERIAL define * tidy up missed comments
| * Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-303-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | Remove non-Keychron keyboardslokher2022-09-1354-3581/+0
|/
* RESET -> QK_BOOT user keymaps (#17940)Joel Challis2022-08-214-5/+5
|
* Merge remote-tracking branch 'origin/master' into developDrashna Jael're2022-08-201-1/+1
|\
| * RESET -> QK_BOOT keyboard readme (#18110)Joel Challis2022-08-201-1/+1
| |
* | Remove `UNUSED_PINS` (#17931)Nick Brassel2022-08-062-2/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-308-33/+26
|\|
| * Move keyboard USB IDs and strings to data driven: D (#17814)Ryan2022-07-298-33/+26
| |
* | Make default layer size 16-bit (#15286)Drashna Jaelre2022-06-191-1/+1
| | | | | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* | Removes terminal from QMK. (#17258)Nick Brassel2022-05-301-1/+1
|/
* RESET -> QK_BOOT default keymaps (#17037)Joel Challis2022-05-153-3/+3
|
* Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵Ryan2022-03-154-10/+0
| | | | (#16655)
* [Keyboard] Add Lain keyboard (#16345)Takuya Urakawa2022-03-0611-0/+430
| | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* Merge remote-tracking branch 'upstream/master' into developfauxpark2021-12-093-6/+3
|\
| * Tidy up NKRO_ENABLE rules (#15382)Ryan2021-12-095-7/+5
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-12-091-19/+0
|\|
| * Remove empty config.h from default-ish keymaps (#15429)Ryan2021-12-091-19/+0
| |
| * Remove references to Makefile in keyboard-level rules.mk (#15427)Ryan2021-12-073-12/+1
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-12-023-6/+0
|\|
| * Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan2021-12-015-12/+0
| |
* | [Keyboard] Convert ergoinu to SPLIT_KEYBOARD (#15305)Joel Challis2021-11-3018-878/+77
| |
* | [Core] Remove matrix_is_modified() and debounce_is_active() (#15349)Stefan Kerkmann2021-11-291-6/+0
|/
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-302-2/+0
|\
| * Remove redundant `MIDI_ENABLE = no` in keyboard-level rules.mk (#14649)Ryan2021-09-302-2/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developJames Young2021-09-295-5/+0
|\|
| * Remove redundant `UNICODE_ENABLE = no` in keyboard-level rules.mk (#14633)Ryan2021-09-305-5/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developJames Young2021-09-262-106/+0
|\|
| * Remove unused `IS_COMMAND()` instances and Magic Key definitions (#14610)James Young2021-09-262-106/+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 'upstream/master' into developfauxpark2021-09-215-5/+5
|\|
| * Remove audio pin references in rules.mk (#14532)Ryan2021-09-215-5/+5
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-09-202-2/+2
|\|
| * Remove backlight pin references in rules.mk (#14513)Ryan2021-09-202-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-123-3/+0
|\|
| * Remove BLUETOOTH_ENABLE from keyboard-level rules.mk (#14379)Ryan2021-09-123-3/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-09-123-15/+0
|\|
| * Remove width, height and key_count from info.json (#14274)Ryan2021-09-123-15/+0
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-09-102-2/+0
|\|
| * Remove BLUETOOTH_ENABLE from defaultish keymaps (#14375)Ryan2021-09-102-2/+0
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2021-09-102-2/+2
|\|