summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-20[Bug] Pachi keymap compile fix (#13261)Xelus22
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-20[Bug] Pachi RGB: fix RGB modifiers (#13262)Xelus22
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-20MisonoWorks Karina Layout Macro Rework (#13259)James Young
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-19Fix issue with crkbd json mapping (#13255)Drashna Jaelre
2021-06-19Add Per Key exclusions for Haptic Feedback (#12386)Roland Huber
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-19[Keyboard] Add LED matrix and 2 layouts to hub20 (#12505)peepeetee
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-19[Keymap] Fix Preonic rev3 default keymap (#12698)nopjmp
The rev3 boards use RGBLIGHT_ENABLE now instead of BACKLIGHT_ENABLE. This resolves the issue of flashing and losing functionality with the default keymap.
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-19[Keyboard] YMDK Wings: enable Backlight (#12714)alittlepeace
2021-06-19Add sync_timer support over serial_link (i.e. Ergodox Infinity) (#12845)Joakim Tufvegren
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-19[Keyboard] Add PLX Keyboard (#12954)Nick Abe
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-06-19Add Mac centric Shift and Alt + GUI Macros (#13107)Albert Y
Co-authored-by: filterpaper <filterpaper@localhost>
2021-06-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-19[Keymap] Add stanrc85 Abasic keymap (#13180)stanrc85
2021-06-20Merge remote-tracking branch 'upstream/master' into developfauxpark
2021-06-20Telophase cleanup (#13225)Ryan
2021-06-19RGB Matrix eeprom write limiting (#13238)XScorpion2
2021-06-20Temporary disable of CRC (#13252)Joel Challis
2021-06-19Fixing incorrect keymap build when switching between multiple keymap.jsons ↵Donald Kjer
(#12632)
2021-06-19allow LINE_PINxx for Teensy 4.x pins (#13247)Michael Stapelberg
fixes https://github.com/qmk/qmk_firmware/issues/13052
2021-06-20pistachio_mp: correct key object order in info.json (#13250)James Young
2021-06-19[Keyboard] Pachi restructure and keyboard addition (#13080)Xelus22
2021-06-19Upgrades Vagrant box to Debian 10 to fix Docker build error on Debian 9. ↵Jean-Sebastien Paquet
(#13236)
2021-06-19[Keyboard Update] Trinity XT TKL fix license and add forgotten indicators ↵Xelus22
(#13202)
2021-06-19bm60rgb: fix layout macro references (#13246)James Young
... and enable Community Layout support
2021-06-19ST7565 invert (#13237)Ryan
2021-06-18[Keyboard] Add Switchplate 910 keyboard (#13235)Jumail Mundekkat
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-06-18[Keymap] Add my keymaps for the Keebio Iris and Planck (#13005)Mats Nilsson
2021-06-18[Keyboard] add dztech/dz65rgb/v3 keyboard (#13017)moyi4681
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-06-18[Keymap] adding keymap for pistachio (#12996)rate
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-18[Keyboard] Murphpad Changes and Updates (#12995)Kyle McCreery
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-19Add oled_invert (#13172)Ignaz Kevenaar
Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-18[Docs] update Japanese translation of tap_hold.md (#12820)umi
* update tap_hold.md translation * restore unnecessary change line
2021-06-18[Docs] update Japanese translation of hardware_keyboard_guidelines.md (#12769)umi
* update hardware_keyboard_guidelines.md translation * update based on comment
2021-06-18[Docs] update Japanese translation of feature_haptic_feedback.md (#12737)umi
* update feature_haptic_feedback.md translation * change url of driver pdf location * change buzz word * update based on comment
2021-06-17[Keyboard] Fix revision issues with Kyria (#13208)Drashna Jaelre
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-06-17[Keyboard] Fix comment in split89's config.h (#13231)jurassic73
Added missing closing comment bit */ This seems to cause the QMK configurator to break when clicking the compile button: Compiling: keyboards/handwired/split89/split89.c In file included from : ent] /* COL2ROW, ROW2COL */  cc1: all warnings being treated as errors  | | | make: *** ine/keyboards/handwired/split89/split89.o] Error 1
2021-06-18Extensible split data sync (#11930)Nick Brassel
* Extensible split data sync capability through transactions. - Split common transport has been split up between the transport layer and data layer. - Split "transactions" model used, with convergence between I2C and serial data definitions. - Slave matrix "generation count" is used to determine if the full slave matrix needs to be retrieved. - Encoders get the same "generation count" treatment. - All other blocks of data are synchronised when a change is detected. - All transmissions have a globally-configurable deadline before a transmission is forced (`FORCED_SYNC_THROTTLE_MS`, default 100ms). - Added atomicity for all core-synced data, preventing partial updates - Added retries to AVR i2c_master's i2c_start, to minimise the number of failed transactions when interrupts are disabled on the slave due to atomicity checks. - Some keyboards have had slight modifications made in order to ensure that they still build due to firmware size restrictions. * Fixup LED_MATRIX compile. * Parameterise ERROR_DISCONNECT_COUNT.
2021-06-18Add CRC8 calculation subsystem to quantum (#12641)Stefan Kerkmann
* Intended usage is data validation in split transport code. * Default space efficient algorithm. * Opt-in fast table based algorithmn with #define CRC8_USE_TABLE switch. * Define switches for size and speed optimized versions, the default is size optimized by using uint_least8_t as datatype for calculations. * #define CRC8_OPTIMIZE_SPEED uses uint_fast8_t as datatype for calculations, this only affects 32-bit Archs like ARM and RISC-V. * Placeholder crc_init() function for hardware backed crc calculation, not implemented yet.
2021-06-18Update merge sequence to reflect no-ff, no-squash. (#13038)Nick Brassel
2021-06-18ChibiOS SVN mirror script. (#13070)Nick Brassel
2021-06-17Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-17[Keyboard] Add Split 89 (#13213)jurassic73
Co-authored-by: Ryan <fauxpark@gmail.com>