summaryrefslogtreecommitdiff
path: root/keyboards/handwired
AgeCommit message (Collapse)Author
2022-10-05Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-10-04[Keyboard] Twig50 (#18085)nodatk
Co-authored-by: Ryan <fauxpark@gmail.com>
2022-10-05onekey: Enable ADC for STM32F072 Discovery (#18592)Ryan
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-10-04[Core] PWM Backlight for RP2040 (#17706)Stefan Kerkmann
2022-10-01Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-10-01onekey: fix quine keymap (#18555)Ryan
2022-09-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-30[Keyboard] handwired/tractyl_manuform: Arduino Micro (#17199)Pascal J
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-09-30onekey: enable ADC for Bluepill and Blackpill (#18545)Ryan
2022-09-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-29[Keyboard] Add handwired tkk diodeless keyboard (#18379)Joseph Fass
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-09-29Remove remaining use of terminal keys and related comment labels (#18402)Johannes Löthberg
2022-09-29Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-29[Keyboard] Add ScottoCMD Keyboard (#18520)Joe Scotto
2022-09-30Merge remote-tracking branch 'upstream/master' into developfauxpark
2022-09-30Onekey: migrate some stuff to data driven (#18502)Ryan
2022-09-28Merge remote-tracking branch 'origin/master' into developJoshua Diamond
2022-09-28[Keyboard] dygma/raise: multiple fixes and improvements (#18361[)Mike Ryan
2022-09-27Further refactoring of joystick feature (#18437)Ryan
2022-09-26Enabling Pointing Device support in register code functions (#18363)Drashna Jaelre
2022-09-26Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-25[Keyboard] Add Osborne 1 handwired keyboard (#18397)Nick Lopez
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-09-26Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-25[Keyboard] Add Handwired 87 keys (#17682)Cao Thai Duong
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com>
2022-09-26Change `{LED,RGB}_DISABLE_TIMEOUT` to `{LED,RGB}_MATRIX_TIMEOUT` (#18415)Ryan
2022-09-26Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-25[Keyboard] Add Scotto9 Macropad (#18452)Joe Scotto
Co-authored-by: Ryan <fauxpark@gmail.com>
2022-09-25[Keymap] develop updates for Drashna Keymaps (#18472)Drashna Jaelre
2022-09-24Merge remote-tracking branch 'origin/master' into developDrashna Jael're
2022-09-24[Keyboard] Add Scotto36 Keyboard (#18446)Joe Scotto
2022-09-23Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)Ryan
2022-09-16Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-16Fix handwired/swiftrax/bumblebee layout macro (#18377)Joel Challis
2022-09-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-09Add via support for 6key (#18082)Jacqueline Liang
2022-09-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-09Hillside 46 & 52: remove dead space from QMK Configurator renderings (#18315)James Young
* Hillside 46 info.json: fix syntax error * Hillside 46 info.json: remove dead space * Hillside 52 info.json: remove dead space
2022-09-07Remove legacy define SERIAL_USE_MULTI_TRANSACTION (#18299)Dasky
2022-09-06Remove legacy USE_SERIAL define (#18292)Dasky
* Remove legacy USE_SERIAL define * tidy up missed comments
2022-09-06Remove `UNICODE_KEY_OSX` and `UC_OSX` (#18290)Ryan
2022-09-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-03Fix a couple of boards still using `usb.device_ver` (#18258)Ryan
2022-09-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-09-03Remove more RESET keycode references (#18252)Joel Challis
2022-08-31Ensure all keyboards have a bootloader set (#18234)Ryan
2022-08-31Move bootloader.mk to platforms (#18228)Ryan
2022-08-31[Core] Rework PS/2 driver selection (#17892)Marek Kraus
* [Core] Rework PS/2 driver selection Enabling and selecting PS/2 driver was using old approach, so it was reworked to current approach, inspired by Serial and WS2812 driver selections. * [Keyboard] Update keyboards using PS/2 to use new PS/2 driver selection * [Docs] Update PS/2 documentation to use new PS/2 driver selection * Fix indentation * [Core] Add PS2 to data driver * Fix oversight in property name Co-authored-by: Drashna Jaelre <drashna@live.com> * Add PS/2 pins to data driven mappings Co-authored-by: Drashna Jaelre <drashna@live.com>
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-29Merge remote-tracking branch 'origin/master' into developQMK Bot