summaryrefslogtreecommitdiffstats
path: root/keyboards/ymdk
Commit message (Collapse)AuthorAgeFilesLines
...
* Normalise Unicode keycodes (#18898)Ryan2022-10-313-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * `UC_MOD`/`UC_RMOD` -> `UC_NEXT`/`UC_PREV` * `UNICODE_MODE_*` -> `QK_UNICODE_MODE_*` * `UC_MAC` -> `UNICODE_MODE_MACOS` * `UC_LNX` -> `UNICODE_MODE_LINUX` * `UC_WIN` -> `UNICODE_MODE_WINDOWS` * `UC_BSD` -> `UNICODE_MODE_BSD` * `UC_WINC` -> `UNICODE_MODE_WINCOMPOSE` * `UC_EMACS` -> `UNICODE_MODE_EMACS` * `UC__COUNT` -> `UNICODE_MODE_COUNT` * `UC_M_MA` -> `UC_MAC` * `UC_M_LN` -> `UC_LINX` * `UC_M_WI` -> `UC_WIN` * `UC_M_BS` -> `UC_BSD` * `UC_M_WC` -> `UC_WINC` * `UC_M_EM` -> `UC_EMAC` * Docs * Update quantum/unicode/unicode.h
* Normalise Combo keycodes (#18877)Ryan2022-10-271-2/+2
|
* Normalise Space Cadet keycodes (#18864)Ryan2022-10-271-1/+1
|
* Remove legacy fauxclicky and unicode keycodes (#18800)Ryan2022-10-211-1/+1
|
* Deprecate `KC_LOCK` for `QK_LOCK` (#18796)Ryan2022-10-213-3/+3
|
* Remove legacy Grave Escape keycodes (#18787)Ryan2022-10-205-5/+5
|
* Remove legacy Debug keycode (#18769)Ryan2022-10-192-2/+2
| | | | | | | | | | | * `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 6 (#18740)Ryan2022-10-161-2/+2
| | | | | | | | | * `KC_RSHIFT` -> `KC_RSFT` * `KC_RCTRL` -> `KC_RCTL` * `KC_LSHIFT` -> `KC_LSFT` * `KC_LCTRL` -> `KC_LCTL`
* Remove legacy keycodes, part 5 (#18710)Ryan2022-10-1518-22/+22
| | | | | * `KC_SLCK` -> `KC_SCRL` * `KC_NLCK` -> `KC_NUM`
* Remove RGBLIGHT_ANIMATION and clean up effect defines for R-Z (#18728)Drashna Jaelre2022-10-1515-62/+144
|
* Remove legacy keycodes, part 4 (#18683)Ryan2022-10-136-13/+13
| | | | | | | | | | | * `KC_PGDOWN` -> `KC_PGDN` * `KC_PSCREEN` -> `KC_PSCR` * `KC_SCOLON` -> `KC_SCLN` * `KC_BSLASH` -> `KC_BSLS` * `KC_BSPACE` -> `KC_BSPC`
* Remove legacy keycodes, part 2 (#18660)Ryan2022-10-107-13/+13
| | | | | | | | | | | | | | | | | | | * `KC_SYSREQ` -> `KC_SYRQ` And one `KC_ALT_ERASE` -> `KC_ERAS` * `KC_NONUS_BSLASH` -> `KC_NUBS` * `KC_NUMLOCK` -> `KC_NUM` * `KC_CLCK` -> `KC_CAPS` * `KC_SCROLLLOCK` -> `KC_SCRL` * `KC_LBRACKET` -> `KC_LBRC` * `KC_RBRACKET` -> `KC_RBRC` * `KC_CAPSLOCK` -> `KC_CAPS`
* 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>
* Switch over MANUFACTURER and PRODUCT to string literals (#18183)Ryan2022-08-281-24/+1
|
* RESET -> QK_BOOT user keymaps (#17940)Joel Challis2022-08-2112-12/+12
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-2110-7/+25
|\
| * Move keyboard USB IDs and strings to data driven, pass 3 (#18111)Ryan2022-08-2110-7/+25
| |
* | 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-067-7/+0
|/
* Move keyboard USB IDs and strings to data driven: Y (#17926)Ryan2022-08-0630-111/+99
|
* Add personal YMDK Split64 keymap (#16980)Minke Zhang2022-07-024-0/+162
| | | Co-authored-by: Drashna Jaelre <drashna@live.com>
* keyboards: fix malformed info.json files (#17292)Ryan Skidmore2022-06-021-4/+4
|
* RESET -> QK_BOOT default keymaps (#17037)Joel Challis2022-05-1517-18/+18
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-05-112-4/+10
|\
| * [Keyboard] Update YMDK Split 64 config (#16979)Minke Zhang2022-05-112-4/+10
| | | | | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* | move melody96 to ymdk vendor folder (#15680)peepeetee2022-04-2022-0/+2235
|/ | | Co-authored-by: Nick Brassel <nick@tzarc.org>
* Remove `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION` from keyboard config.h ↵Ryan2022-03-153-12/+0
| | | | (#16655)
* Remove `matrix_key_count()` (#16603)Ryan2022-03-101-9/+0
| | | | | * Remove `matrix_key_count()` * Remove `matrix_bitpop()`
* [Keyboard] add YMDK YMD21 v2 (#16442)James Young2022-02-267-0/+272
| | | | | * [Keyboard] add YMDK YMD21 v2 * remove trailing whitespace from default keymap
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-02-022-0/+80
|\
| * [Keyboard] Add YMDK sp64 VIA support (#16152)Adrian Fleiszer2022-02-012-0/+80
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-01-291-1/+1
|\|
| * Remove missing and trailing commas in info.json files. (#16088)Gabriel Harel2022-01-281-1/+1
| |
* | Yet another bad `DEFAULT_FOLDER` fix. (#15904)Nick Brassel2022-01-161-1/+1
| |
* | move yd60mq to ymdk vendor folder (#15647)peepeetee2022-01-1718-0/+1315
| |
* | Fix CI. (#15828)Nick Brassel2022-01-112-1/+1
| | | | | | * Fix CI.
* | [Keyboard] Rename ymdk_np21 to np21, move to ymdk vendor folder (#15641)peepeetee2022-01-1010-0/+470
| |
* | [Keyboard] move ymd96 to ymdk vendor folder (#15643)peepeetee2022-01-1015-0/+555
| |
* | [Keyboard] move ymd75 to ymdk vendor folder (#15645)peepeetee2022-01-1025-0/+983
|/
* Fix up build options comments (#15463)Ryan2021-12-122-2/+4
|
* Tidy up NKRO_ENABLE rules (#15382)Ryan2021-12-098-14/+8
|
* Tidy up `SLEEP_LED_ENABLE` rules (#15362)Ryan2021-12-017-13/+0
|
* Remove `BOOTMAGIC_ENABLE = lite` option (#15002)James Young2021-11-058-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* Remove audio pin references in rules.mk (#14532)Ryan2021-09-211-1/+1
|
* Remove BLUETOOTH_ENABLE from keyboard-level rules.mk (#14379)Ryan2021-09-125-5/+0
|
* Remove width, height and key_count from info.json (#14274)Ryan2021-09-128-18/+0
|
* [keyboard] Add hotswap YMDK Wings (#14176)alittlepeace2021-09-119-0/+333
| | | | | | | | | | | | | | | | | | | | | | | | | * Add files via upload * Update keyboards/ymdk/wingshs/readme.md Co-authored-by: Joel Challis <git@zvecr.com> * Delete wingshs.json * Update keyboards/ymdk/wingshs/config.h Co-authored-by: Drashna Jaelre <drashna@live.com> * Update keyboards/ymdk/wingshs/rules.mk Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/ymdk/wingshs/info.json Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* Change USBasp and bootloadHID bootloaders to lowercase (#14354)Ryan2021-09-102-2/+2
|
* Remove bootloader listings from rules.mk (#14330)Ryan2021-09-104-28/+0
|