Age | Commit message (Collapse) | Author |
|
|
|
KBD67 rev2 (#12053)
|
|
* Moved tokyo60/ into tokyokeyboard/tokyo60/.
* Updated make instruction, fixed broken image link
* Fixed still broken image link.
|
|
|
|
* add tender/macrowo_pad
* add another layer for via keymap
Co-authored-by: Swiftrax <swiftrax@gmail.com>
|
|
|
|
The readme from the Ploopy Mini was accidentally put as the Ploopy
Nano readme. The Ploopy Nano does not ship with VIA by default.
|
|
|
|
* ensure that safe_commands always run
* import the config subcommand in bin/qmk
|
|
|
|
* Update Japanese newbs_learn_more_resources.md document.
* Slightly modded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* update feature_pointing_device.md translation
* update based on comment
|
|
|
|
* Update Japanese newbs_flashing.md document.
* Slightly modded
* Apply suggestions from code review
|
|
|
|
|
|
|
|
* add docs/ja/data_driven_config.md
* Update docs/ja/data_driven_config.md
Co-authored-by: s-show <s1shimz@gmail.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: s-show <s1shimz@gmail.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: s-show <s1shimz@gmail.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: s-show <s1shimz@gmail.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
* Update docs/ja/data_driven_config.md
Co-authored-by: shela <shelaf@users.noreply.github.com>
Co-authored-by: s-show <s1shimz@gmail.com>
Co-authored-by: shela <shelaf@users.noreply.github.com>
|
|
|
|
* add v1 12og pcb
* update
* matrix changes for testing
* Update matrix.c
* finalized files
* rename board versions
* update readmes
* typo in readme
* fix board filenames
* Update keyboards/matrix/m12og/rev1/rev1.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* change function
* update halconf and chconf
* merge master
* Update readme.md
* Update readme.md
* Update readme.md
Co-authored-by: Drashna Jaelre <drashna@live.com>
|
|
|
|
|
|
|
|
Co-authored-by: Joakim Tufvegren <jocke@barbanet.com>
|
|
|
|
|
|
|
|
* 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>
|
|
|
|
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
|
|
quantum (#13152)
|
|
|
|
|
|
|
|
|
|
* 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
|
|
* 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* 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
|