Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* feat: adds caps lock led status on Moonlander/Ergodox
* fix: botched source file
* fix: light up the most right leds
|
|
* feat: increase mouse wheel key delay
* feat: increase mouse wheel key delay for the Planck
|
|
* Disable Unicode and Swap Hands on ErgoDox EZ
Because we're running into both program memory and system memory limits,
this is an easy fix to avoid both, especially since neither feature is
actually used by us.
* Disable Swap Hands for Moonlander as well
|
|
|
|
|
|
|
|
|
|
|
|
* Add rgblight_reset_from_eeprom()
* reset->reload
|
|
|
|
|
|
* Add stm32-dfu and apm32-dfu to bootloader.mk
* Update flashing docs
* Update comment
* Further wordsmithing
|
|
With MAJOR_MODE (= major scale), keys in one octave is not 12 but 7.
To solve this problem, change divisor number from 12 to 7 at %(Modulo) and /(Division).
NOTE:
The last 12 represents half step keys in one octave for pitch calculation.
|
|
(#11608)
|
|
* Add fallback syscalls to ChibiOS builds that are present but able to be overridden as appropriate.
* Modified location to be ChibiOS-specific.
|
|
* generate version.h when compiling json files
* make flake8 happy
* fix formatting and verbose
* quiet up the compile output
|
|
* add support for --clean to compile and flash
* compile standalone JSON keymaps without polluting the tree
* Add support for passing environment vars to make
* make flake8 happy
* document changes to qmk compile and flash
* add -e support to json export compiling
* Fix python 3.6
* honor $MAKE
* add support for parallel builds
|
|
* add byte order bgr for ws2812
* update docs for driver change
* Update ws2812_driver.md
* Update docs/ws2812_driver.md
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
|
|
* allow customizing decrease delay of rgb heatmap
* rename rgb typing heatmap decrease delay variable
* address review comments
* nix-shell: add clang-tools required for formatting the C code
* heatmap: use real timer to track decrement rate
* heatmap: fix ifndef var name typo
* heatmap: add docs
* Update docs/feature_rgb_matrix.md
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
|
|
|
|
|
|
|
|
* Lighting Layers should be disabled when suspended
* bugfixes
|
|
|
|
* resolve race condition between suspend and wake in LUFA
* avoid multiple calls to suspend_power_down() / suspend_wakeup_init()
* Remove duplicate suspend_power_down_kb() call
* pause on wakeup to wait for USB state to settle
* need the repeated suspend_power_down() (that's where the sleep is)
* more efficient implementation
* fine tune the pause after sending wakeup
* speculative chibios version of pause-after-wake
* make wakeup delay configurable, and adjust value
* better location for wakeup delay
|
|
* fix stopping audio on suspend vs. startup sound
* trim firmware size
* fix stuck audio on startup (ARM)
|
|
|
|
|
|
|
|
* Add DUMP_C_MACROS to tmk_core/rules.mk
* update DUMP_C_MACROS
* add VERBOSE_LD_CMD, VERBOSE_AS_CMD
* add VERBOSE_C_CMD, VERBOSE_C_INCLUDE
* update DUMP_C_MACROS, VERBOSE_C_INCLUDE, VERBOSE_C_CMD
|
|
* Add proper prototypes for Tap-Hold Per Key functions
* Fix handwired/tennie default keymap
* Remove unneeded references
* Fix tapping term per key check in space cadet
* Pre-emptive fix for tap dance
* Fix marksard/leftover30
* Replace hard coded tapping term with define
|
|
|
|
|
|
* Align ChibiOS spi_master behaviour with AVR
* Rollback `spi_transmit()` and `spi_receive()` to preserve DMA
|