summaryrefslogtreecommitdiffstats
path: root/keyboards/mechwild
Commit message (Collapse)AuthorAgeFilesLines
* Move LED indicator config to data driven (#19800)Ryan2023-02-176-12/+12
|
* Move Bootmagic config to data driven (#19860)Ryan2023-02-174-8/+6
|
* Remove unused RGBLight defines from config.h (#19859)Ryan2023-02-176-36/+0
|
* Migrate `MCU` and `BOOTLOADER` to data-driven (#19529)Ryan2023-02-0824-90/+34
|
* Remove unused Bootmagic row/col defines from config.h (#19761)Ryan2023-02-075-22/+0
|
* Remove unused `GRAVE_ESC_CTRL_OVERRIDE` from config.h (#19752)Ryan2023-02-066-31/+0
|
* Remove `IS_HOST_LED_ON` and migrate usages (#19753)Ryan2023-02-063-5/+6
|
* Debounce defines cleanup (#19742)Ryan2023-02-039-25/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Remove unused `MATRIX_HAS_GHOST` from config.h (#19726)Ryan2023-02-032-6/+0
|
* Clean up Force NKRO in config.h (#19718)Ryan2023-01-305-103/+0
|
* Remove usages of config_common.h from config.h files. (#19714)Nick Brassel2023-01-3110-10/+0
|
* Fix functions with empty params (#19647)Ryan2023-01-201-1/+1
| | | | | * Fix functions with empty params * Found a bunch more
* Remove useless line continuations (#19399)Ryan2022-12-303-22/+0
|
* Tap Dance: remove `qk_` prefix (#19313)Ryan2022-12-143-9/+9
|
* Update use of legacy keycodes (#19120)Joel Challis2022-11-224-8/+8
|
* Remove more `UNUSED_PINS` defines (#18940)Ryan2022-11-031-1/+0
|
* Normalise Space Cadet keycodes (#18864)Ryan2022-10-271-2/+2
|
* Remove legacy Grave Escape keycodes (#18787)Ryan2022-10-2013-13/+13
|
* Remove legacy EEPROM clear keycodes (#18782)Ryan2022-10-201-1/+1
| | | | | | | | | | | * `EEP_RST` -> `EE_CLR`, default-ish keymaps * `EEP_RST` -> `EE_CLR`, user keymaps * `EEP_RST` -> `EE_CLR`, community layouts * `EEP_RST` -> `EE_CLR`, userspace * `EEP_RST` -> `EE_CLR`, docs & core
* Remove legacy keycodes, part 5 (#18710)Ryan2022-10-158-12/+12
| | | | | * `KC_SLCK` -> `KC_SCRL` * `KC_NLCK` -> `KC_NUM`
* Remove RGBLIGHT_ANIMATION and clean up effect defines for L-Q (#18727)Drashna Jaelre2022-10-152-24/+20
|
* Remove legacy keycodes, part 4 (#18683)Ryan2022-10-132-2/+2
| | | | | | | | | | | * `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-106-7/+7
| | | | | | | | | | | | | | | | | | | * `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`
* RESET -> QK_BOOT user keymaps (#18560)Joel Challis2022-10-012-2/+2
|
* Merge remote-tracking branch 'origin/master' into developJoshua Diamond2022-09-181-1/+1
|\
| * FIx ARRAYSIZE def and Murphpad string array (#18392)jonavin2022-09-181-1/+1
| | | | | | Co-authored-by: Jonavin <=>
* | Use a macro to compute the size of arrays at compile time (#18044)Jeff Epler2022-08-305-5/+5
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* [Keyboard] mechwild/bde cleanup and refactor (#18149)Less/Rikki2022-08-2842-509/+501
|
* Add eeprom defaults for tinyuf2 bootloader (#18042)Joel Challis2022-08-253-103/+0
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-243-1/+2
|\
| * Fix use of encoder map in mechwild/clunker (#18156)Joel Challis2022-08-243-1/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-237-0/+266
|\|
| * [Keyboard] Add Clunker (#18141)Kyle McCreery2022-08-237-0/+266
| | | | | | Co-authored-by: Drashna Jaelre <drashna@live.com>
* | RESET -> QK_BOOT user keymaps (#17940)Joel Challis2022-08-2111-16/+16
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-212-8/+7
|\|
| * Move keyboard USB IDs and strings to data driven, pass 3 (#18111)Ryan2022-08-212-8/+7
| |
* | 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-207-22/+25
|\|
| * Move keyboard USB IDs and strings to data driven, pass 2: M-O (#18090)Ryan2022-08-207-22/+25
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-151-0/+1
|\|
| * Migrate more F4x1 board files (#18054)Joel Challis2022-08-151-0/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-141-0/+1
|\|
| * Migrate more F4x1 board files (#18046)Joel Challis2022-08-151-0/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-08-1014-0/+1081
|\|
| * [Keyboard] MechWild Puckbuddy (#17161)Kyle McCreery2022-08-0914-0/+1081
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Initial commit * testing modes * working on puckbuddy firmware. This is all working for now but need to clean it up and personalize it. * needs to be updated from vial build * prepping for PR * added rgb mode cycling to fn1 since it isn't on the encoder for these maps * readme written in preparation for pr * reverting driver print line * Removed old reference to OBE in the readme from copypaste error * applying changes based on review * applying changes from review * Update keyboards/mechwild/puckbuddy/puckbuddy.c * trailing whitespaces removed * added clear screen condition for switching back to name rendering * Added uf2 keymap and fixed display glitch for the logo render art. * Removed extra definition of FEE_PAGE_BASE_ADDRESS * Removed the uf2 keymap and made it automatic when selecting bootloader instead * Fixed the bad bootloader check * moved the uf2 check from rules.mk to post_rules.mk to satisfy lint * changing it back to stm32-dfu bootloader default * Fixed RGBLIGHT enable oversight. * Added persistent dynamic tapping configuration for the cirque touchpad tap term * new lines at end of files for formatting and diff sanity * changing default bootloader back to stm32-dfu * Had to completely redefine the tap keycodes instead of using the DT_UP and DT_DOWN keycodes because I was not able to specify them easily in the via/vial configs and this allows me to keep the original functionality instead of tying it to eeprom like these are. * Added tap toggling keycodes to quick enable and disable the tapping term * working out an issue where the tap status keeps turning to off on power cycle * correcting submodule garbo * Fixed display issue and rewrote TAP config approach to make it a little easier to control * removing backup puckbuddy.c code * Added some comment, removed some commented out old code, removed trailing whitespace * Changed to handle tinyuf2 by expecting emulated eeprom so that adding other forms of eeprom can be handled for the memory offset separately, and added user oled conditional inside the keyboard oled code block * Updated default keymaps to have the tap and dpi keys on by default * Apply suggestions from code review * Apply suggestions from code review
* | 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
| |
* | Remove `UNUSED_PINS` (#17931)Nick Brassel2022-08-0610-10/+0
|/
* [Keyboard] encoder map on more mechwild boards (#17894)Less/Rikki2022-08-0518-58/+142
|