summaryrefslogtreecommitdiff
path: root/keyboards/mwstudio
AgeCommit message (Collapse)Author
2023-03-23Remove `RGB_DI_PIN` ifdefs (#20218)Ryan
2023-03-11Move matrix config to info.json, part 7 (#20020)Ryan
2023-02-26Move encoder config to data driven (#19923)Ryan
Co-authored-by: Nick Brassel <nick@tzarc.org>
2023-02-23Migrate some more layouts to data driven (#19889)Ryan
2023-02-23VIA Protocol 12 + fixes (#19916)Nick Brassel
Co-authored-by: Wilba <wilba@wilba.tech> Co-authored-by: zvecr <git@zvecr.com>
2023-02-17Remove matrix size defines (#19581)Ryan
2023-02-17Move Bootmagic config to data driven (#19860)Ryan
2023-02-09Fix errors flagged by generate-api (#19784)Ryan
2023-02-08Migrate `MCU` and `BOOTLOADER` to data-driven (#19529)Ryan
2023-02-07Remove unused Bootmagic row/col defines from config.h (#19761)Ryan
2023-02-03Debounce defines cleanup (#19742)Ryan
* Clean up `DEBOUNCE` in config.h, 0-9 * Clean up `DEBOUNCE` in config.h, A * Clean up `DEBOUNCE` in config.h, B * Clean up `DEBOUNCE` in config.h, C * Clean up `DEBOUNCE` in config.h, D * Clean up `DEBOUNCE` in config.h, E * Clean up `DEBOUNCE` in config.h, F * Clean up `DEBOUNCE` in config.h, G * Clean up `DEBOUNCE` in config.h, H * Clean up `DEBOUNCE` in config.h, handwired * Clean up `DEBOUNCE` in config.h, I * Clean up `DEBOUNCE` in config.h, J * Clean up `DEBOUNCE` in config.h, K * Clean up `DEBOUNCE` in config.h, L * Clean up `DEBOUNCE` in config.h, M * Clean up `DEBOUNCE` in config.h, N * Clean up `DEBOUNCE` in config.h, O * Clean up `DEBOUNCE` in config.h, P * Clean up `DEBOUNCE` in config.h, Q * Clean up `DEBOUNCE` in config.h, R * Clean up `DEBOUNCE` in config.h, S * Clean up `DEBOUNCE` in config.h, T * Clean up `DEBOUNCE` in config.h, U * Clean up `DEBOUNCE` in config.h, V * Clean up `DEBOUNCE` in config.h, W * Clean up `DEBOUNCE` in config.h, X * Clean up `DEBOUNCE` in config.h, Y * Clean up `DEBOUNCE` in config.h, Z * Remove default debounce from info.json * Migrate non-default debounce to info.json
2023-01-31Remove usages of config_common.h from config.h files. (#19714)Nick Brassel
2022-12-12[Keyboard] add mw80 (#19223)TW59420
Co-authored-by: jack <0x6a73@protonmail.com>
2022-11-27Change `RGB_MATRIX_STARTUP_*` defines to `RGB_MATRIX_DEFAULT_*` (#19079)Ryan
2022-11-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-11-20[Keyboard] add mw660 keyboard (#18849)TW59420
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-10-24Merge remote-tracking branch 'origin/master' into developDrashna Jael're
2022-10-23MWStudio MW65 Black Refactor (#18824)James Young
* 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
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-21RESET -> QK_BOOT user keymaps (#17940)Joel Challis
2022-08-20Merge remote-tracking branch 'origin/master' into developDrashna Jael're
2022-08-20RESET -> QK_BOOT keyboard readme (#18110)Joel Challis
2022-08-20Merge remote-tracking branch 'upstream/master' into developfauxpark
2022-08-20Move keyboard USB IDs and strings to data driven, pass 2: M-O (#18090)Ryan
2022-08-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-08-07RESET -> QK_BOOT default keymaps (#17939)Joel Challis
2022-08-06[Core] Process all changed keys in one scan loop, deprecate ↵Stefan Kerkmann
`QMK_KEYS_PER_SCAN` (#15292)
2022-08-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-08-03Move keyboard USB IDs and strings to data driven: M (#17859)Ryan
2022-07-02Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-07-03Add alicekk support (#17027)TW59420
2022-06-19Make default layer size 16-bit (#15286)Drashna Jaelre
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
2022-05-16Various fixes for g_led_config lint warnings (#17104)Joel Challis
2022-05-15RESET -> QK_BOOT default keymaps (#17037)Joel Challis
2022-02-20[Keyboard] Add MW75R2 PCB (#15042)TW59420
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
2022-02-20[Keyboard] Fix mwstudio/mw65_rgb errors (#16410)jack
2022-02-20Update fix for MW65_rgb and added personal keymap (#15279)HorrorTroll
* Update fix for MW65 and added personal keymap * Resolve fix * Resolved fix, again * Added missing GPLv2 license headers * Resolved issue
2022-01-11Correct matrix effect name (#15816)Albert Y
2021-12-09Tidy up NKRO_ENABLE rules (#15382)Ryan
2021-12-01Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan
2021-11-29[Keyboard] Add mw65_black support (#15198)TW59420
2021-11-21Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-11-21MW65 RGB Layout Macro Refactor (#15246)James Young
* 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.
2021-11-21Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-11-21MW75 Layout Macro Refactor (#15247)James Young
* 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.
2021-11-15Require explicit enabling of RGB Matrix modes (#15018)Drashna Jaelre
2021-10-27[Keyboard] Add MW65 Series PCB (#14939)TW59420
2021-10-22[Keyboard] Add MW75 support (#14833)TW59420