summaryrefslogtreecommitdiffstats
path: root/keyboards/mwstudio
Commit message (Collapse)AuthorAgeFilesLines
* Remove usages of config_common.h from config.h files. (#19714)Nick Brassel2023-01-316-6/+0
|
* [Keyboard] add mw80 (#19223)TW594202022-12-129-0/+352
| | | Co-authored-by: jack <0x6a73@protonmail.com>
* Change `RGB_MATRIX_STARTUP_*` defines to `RGB_MATRIX_DEFAULT_*` (#19079)Ryan2022-11-274-4/+4
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-11-209-0/+279
|\
| * [Keyboard] add mw660 keyboard (#18849)TW594202022-11-209-0/+279
| | | | | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
* | Merge remote-tracking branch 'origin/master' into developDrashna Jael're2022-10-244-16/+125
|\|
| * MWStudio MW65 Black Refactor (#18824)James Young2022-10-234-16/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * mw65_black.h: add matrix diagram * mw65_black.h: fill-in matrix definition Fill the empty electrical positions with `KC_NO`. * mw65_black.h: update matrix diagram * rename LAYOUT to LAYOUT_65_ansi_blocker * add LAYOUT_65_ansi_blocker_tsangan * info.json: correct maintainer value
* | Fix Per Key LED Indicator Callbacks (#18450)Drashna Jaelre2022-10-044-5/+9
| | | | | | | | 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-236-8/+8
| |
* | 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-212-2/+2
|
* Merge remote-tracking branch 'origin/master' into developDrashna Jael're2022-08-205-5/+5
|\
| * RESET -> QK_BOOT keyboard readme (#18110)Joel Challis2022-08-205-5/+5
| |
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2022-08-202-7/+9
|\|
| * Move keyboard USB IDs and strings to data driven, pass 2: M-O (#18090)Ryan2022-08-202-7/+9
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-072-2/+2
|\|
| * RESET -> QK_BOOT default keymaps (#17939)Joel Challis2022-08-072-2/+2
| |
* | [Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann2022-08-062-8/+0
| | | | | | | | `QMK_KEYS_PER_SCAN` (#15292)
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-038-32/+26
|\|
| * Move keyboard USB IDs and strings to data driven: M (#17859)Ryan2022-08-038-32/+26
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-07-0210-0/+356
|\|
| * Add alicekk support (#17027)TW594202022-07-0310-0/+356
| |
* | Make default layer size 16-bit (#15286)Drashna Jaelre2022-06-191-2/+2
|/ | | Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Various fixes for g_led_config lint warnings (#17104)Joel Challis2022-05-161-3/+6
|
* RESET -> QK_BOOT default keymaps (#17037)Joel Challis2022-05-154-4/+4
|
* [Keyboard] Add MW75R2 PCB (#15042)TW594202022-02-209-0/+494
| | | | Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* [Keyboard] Fix mwstudio/mw65_rgb errors (#16410)jack2022-02-202-24/+8
|
* Update fix for MW65_rgb and added personal keymap (#15279)HorrorTroll2022-02-2023-47/+1145
| | | | | | | | | | | * Update fix for MW65 and added personal keymap * Resolve fix * Resolved fix, again * Added missing GPLv2 license headers * Resolved issue
* Correct matrix effect name (#15816)Albert Y2022-01-111-1/+1
|
* Tidy up NKRO_ENABLE rules (#15382)Ryan2021-12-093-6/+3
|
* Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan2021-12-013-6/+0
|
* [Keyboard] Add mw65_black support (#15198)TW594202021-11-299-0/+325
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-214-68/+84
|\
| * MW65 RGB Layout Macro Refactor (#15246)James Young2021-11-214-68/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * mw65_rgb.h: use QMK 3-character notation for matrix identifiers * mw65_rgb.h: add matrix diagram * info.json: apply friendly formatting Update key labels for QMK CLI rendering. * move rotary encoder keycodes to top row * info.json: update maintainer field Use the maintainer's GitHub username.
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2021-11-214-87/+108
|\|
| * MW75 Layout Macro Refactor (#15247)James Young2021-11-214-87/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * mw75.h: use QMK 3-character matrix identifiers * update stock keymaps Use QMK-native keycode aliases, and update grid alignment of keycodes. * mw75.h: add matrix diagram * info.json: apply friendly formatting * move rotary encoder keycodes to top row * info.json: update maintainer field Use the maintainer's GitHub username.
* | Require explicit enabling of RGB Matrix modes (#15018)Drashna Jaelre2021-11-151-14/+44
|/
* [Keyboard] Add MW65 Series PCB (#14939)TW594202021-10-2710-0/+452
|
* [Keyboard] Add MW75 support (#14833)TW594202021-10-2210-0/+424