summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-10GMMK Pro RGB Support (#13147)Gigahawk
* Enable SPI1 for GMMK pro * Setup initial boilerplate for new LED driver * RGB matrix minimally functional * Map full LED matrix * Return keymap to default * Fix printscreen LED mapping * Reduce max brightness * Default values for AW20216 * Add documentation for AW20216 * Disable console and warnings * Run cformat * Update drivers/awinic/aw20216.h Co-authored-by: Drashna Jaelre <drashna@live.com> * make aw struct match issi struct Co-authored-by: Drashna Jaelre <drashna@live.com> * add led location defines Co-authored-by: Drashna Jaelre <drashna@live.com> * Use led pin definitions in keyboard.c * Add driver indices to led map * Fix elif typo * Run cformat * Update docs * Fix typo in docs * Document global brightness limits Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-09Add support for LAZYDESIGNERS/THE60/rev2 (#13015)jackytrabbit
Co-authored-by: Erovia <Erovia@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-10Updated encoder_update_user on my keymap to follow the new signature on ↵Carlos Martins
quantum (#13152)
2021-06-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-09update via keymap (#13145)Xelus22
2021-06-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-09Allow limiting the multibuild based on keymap name. (#13066)Nick Brassel
2021-06-09Avoid 8-bit timer overflows in debounce algorithms (#12240)Simon Arlott
* Add fast_timer_t that is 16-bit or 32-bit based on architecture A 16-bit timer will overflow sooner but be faster to compare on AVR. * Avoid 8-bit timer overflows in debounce algorithms Count down remaining elapsed time instead of trying to do 8-bit timer comparisons. Add a "none" implementation that is automatically used if DEBOUNCE is 0 otherwise it will break the _pk/_pr count down. * Avoid unnecessary polling of the entire matrix in sym_eager_pk The matrix only needs to be updated when a debounce timer expires. * Avoid unnecessary polling of the entire matrix in sym_eager_pr The matrix only needs to be updated when a debounce timer expires. The use of the "needed_update" variable is trying to do what "matrix_need_update" was added to fix but didn't work because it only applied when all keys finished debouncing. * Fix sym_defer_g timing inconsistency compared to other debounce algorithms DEBOUNCE=5 should process the key after 5ms, not 6ms * Add debounce tests
2021-06-09Use single memcmp to determine if matrix changed. (#13064)Nick Brassel
* Use memcmp to determine if matrix changed. * Firmware size issues. * Add documentation for the lack of need of MATRIX_ROW_PINS/MATRIX_COL_PINS, when overriding low-level matrix functions.
2021-06-09Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-09Migrate preonic/rev3 to pwm ws2812 driver (#13142)Joel Challis
2021-06-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-09Fix Bug with (RGB|LED)_DISABLE_WHEN_USB_SUSPENDED define (#13060)Drashna Jaelre
2021-06-08`spi_master` Kinetis support (#13098)Ryan
2021-06-08Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08Set `BOOTLOADER = stm32-dfu` for all applicable STM32 boards (#12956)Ryan
* Set bootloader to stm32-dfu for STM32F303 * Set bootloader to stm32-dfu for STM32F0x2 * Set bootloader to stm32-dfu for STM32F4x1 * Set bootloader to stm32duino for sowbug * Delete redundant bootloader_defs headers * Add some missing MCU name comments * Move APM32 dfu-suffix overrides underneath bootloader * Remove redundant STM32_BOOTLOADER_ADDRESS defines/rules
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08Update requirements.txt (#13135)Joel Challis
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-07Move hid and pyusb to requirements.txt (#13134)Zach White
* Add his and pyusb to * Update requirements-dev.txt
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08Update Japanese newbs_building_firmware_configurator.md document. (#12836)shela
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08update ref_functions.md translation (#12784)umi
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08update one_shot_keys.md translation (#12771)umi
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08update hardware_avr.md translation (#12760)umi
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08update feature_rawhid.md translation (#12759)umi
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-08[Docs] update Japanese translation of custom_quantum_functions.md (#12715)umi
* update custom_quantum_functions.md translation * update custom_quantum_functions.md translation * explicitly describe pronoun * update based on comment * update based on comment
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-07Add default `ortho_1x1` layout (#13118)Ryan
2021-06-07Add readPort() and some API to 'tmk_core/common/*/gpio.h' (#12754)Takeshi ISHII
* add readPort() and some API to 'tmk_core/common/*/gpio.h' The following macros have been added to gpio.h. * readPort(port) * setPortBitInput(port, bit) * setPortBitInputHigh(port, bit) * setPortBitOutput(port, bit) * writePortBitLow(port, bit) * writePortBitHigh(port, bit) * add data type 'port_data_t' into gpio.h * rename qmk_pin to pin
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-06[Docs] added basic midi documention of common features (#13113)wxyangf
Co-authored-by: precondition <57645186+precondition@users.noreply.github.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Joel Challis <git@zvecr.com>
2021-06-06Fix firmware size check with avr-libc 1:2.0.0+Atmel3.6.2-1.1 (Debian ↵Sergey Vlasov
bullseye) (#12951) Debian bullseye (testing at the moment, but seems close to release) has avr-libc 1:2.0.0+Atmel3.6.2-1.1 with some changes taken from the Atmel-distributed toolchain. In particular, the <avr/io.h> header for ATmega32A (avr/iom32a.h) now defines the FLASHEND constant as `0x7FFFU`, and that `U` suffix breaks the firmware size check code, because the shell arithmetic expansion that is used to calculate `MAX_SIZE` does not support those C-specific suffixes. As a workaround, add `-D__ASSEMBLER__` to the C preprocessor invocation that is used to expand those macros; in this case avr/iom32a.h defines `FLASHEND` without the `U` suffix, and everything works as it did before with older avr-libc versions. The exact same code is present in two places; they are both changed, even though the code in `tmk_core/avr.mk` is actually never used for ATmega32A (and the header for ATmega32U4 does not add that `U` suffix to `FLASHEND` for some reason).
2021-06-06[Keymap] RGB Matrix working for Sofle RGB (#12861)Carlos Martins
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-06-06[Core] ChibiOS fix O3 and LTO breakage of extra keys and joystick (#12819)Stefan Kerkmann
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-06[Keyboard] Add program yoink via keymap (#12645)Matthew Dias
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-06[Keyboard] add molecule (#12601)bbrfkr
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-06Fixed ISO keyboard layout for the Mysterium rev1.1 board (#12531)HalfHeuslerAlloy
2021-06-07Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-06-06[Keymap] add id80/ansi/keymaps/msf (#11957)Miguel Filipe
2021-06-07core: bump USB spec version in device descriptor to 2.0 (#13078)Michael Stapelberg
Co-authored-by: Ryan <fauxpark@gmail.com>