aboutsummaryrefslogtreecommitdiffstats
generated by cgit v1.2.3 (git 2.25.1) at 2025-03-16 02:16:39 +0000 nohover-highlight'>
Commit message (Collapse)AuthorAgeFilesLines
* add keebio/bdn9:ghostseven keymap (#10154)Blake2020-09-012-0/+90
| | | Keebio BDN9 Additional Keymap - Rev Encoders
* (setta21 & getta25) Keymaps Update (#10170)Salicylic-acid32020-09-014-3/+4
| | | OLED is turned off by default.
* E85 Hotswap/Soldered Fixes (#10173)MechMerlin2020-09-0127-30/+512
| | | | | | | | | | | | | | | | | | | | | | | | | | | Update DZ60 Personal readme.md and keymap.c * Update readme.md * Update keymap.c * Update keymap.c * Update readme.md * Update readme.md * Update readme.md * Update keymap.c * Update readme.md * Update * Update readme.md * Update keymap.c * Update readme.md
* TMO50: use layer_state_set_kb at keyboard level (#10150)Joe Wasson2020-08-312-11/+31
| | | | | * Change TMO to use layer_state_set_kb as is customary at the keyboard level. This also factors out `process_indicator_led` to a separate method.
* [Keymap] Add ddeklerk ortho_4x12 layout (#10109)Danilo de Klerk2020-08-311-0/+78
| | | | | * Add ddeklerk ortho_4x12 layout * Add license header
* [Keymap] add dmqdesign/spin:gorbachev (#9919)gorbachev2020-08-314-0/+282
| | | | | | | | | | | | | | | | | | * Add keymap for DQM Design Spin macropad * changes from code review * state -> layer_state * Formatting fixes * Formatting fixes * Formatting fixes * Formatting fixes * Formatting fixes
* [Keyboard] Mechlovin Delphine (#9835)mechlovin2020-08-3117-0/+539
| | | | | | | | | | | | | | | | | * add * ADD * update * update * update * update * Update rgb_led.c * Update rgb_led.c
* Fixed Spanish keymap extra ES_DIAE symbol (#10211)FĂ©lix Sanz2020-09-011-1/+1
| | | | | | | | | | | * Fixed Spanish keymap extra ES_DIAE symbol `ES_DIAE` should be `S(ES_ACUT)` not `S(ES_GRV)` * Update quantum/keymap_extras/keymap_spanish.h Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* format code according to conventions [skip ci]QMK Bot2020-08-2914-96/+93
|
* update "Breaking Changes" docJames Young2020-08-291-7/+8
|
* Revert "Branch point for 2020 Aug 29 Breaking Change"James Young2020-08-291-6/+0
| | | | This reverts commit 7259126e8d67e83a9bd48dcf0914be1849d638b5.
* Add ChangeLog for 2020 Aug 29 Breaking ChangesJames Young2020-08-293-16/+148
|
* Allow joysticks to be used without analog pins (#10169)Zach White2020-08-293-9/+20
| | | | | * Allow joysticks to be used without analog pins * change how analog/digital joysticks are specified
* K-Type refactor (#9864)Ryan2020-08-2914-242/+465
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * K-Type refactor * Declare QMK in product name again * Hopefully fix matrix scanning * Maybe this time * Partial (literally) RGB Matrix support * Put RGB_MATRIX_ENABLE into rgb keymap for now * Add ifdefs for RGB config * Set layer 1 to actually be layer 1... * Update keyboards/k_type/readme.md * Put all RGB config in keymap for now * Set SDB high? * Before `rgb_matrix_init()` would be best * User level, not keyboard * Combating dropped keys * Nope * Readme for RGB keymap * Remove custom matrix
* Remove support for Adafruit EZ-Key (#10103)Ryan2020-08-2911-220/+68
| | | | | | | | | * Remove support for Adafruit EZ-Key * Update docs/ja/feature_bluetooth.md Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com> Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
* Fix DMA stream ID calculation in ws2812_pwm (#10008)Sergey Vlasov2020-08-291-1/+1
| | | | | | | Some STM32 chips have STM32_DMA1_STREAM1 as the first DMA stream, others (F4xx, F7xx, H7xx) have STM32_DMA1_STREAM0. Instead of those names, use STM32_DMA_STREAM(0), which should always give the first stm32_dma_stream_t structure in the DMA streams array, so that the stream ID would be calculated correctly.
* Define STM32_DMA_REQUIRED when using DMA-based WS2812 driver on STM32. (#10127)Nick Brassel2020-08-293-2/+6
|
* Kiibohd bootloader, take 2 (#10129)Ryan2020-08-2912-74/+28
|
* Add a method to read the OLED display buffer from user space (#8777)Richard2020-08-293-0/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | * Adding extern and declaration * Change to mediated buffer read * Adding raw byte read * Restore write raw... D'Oh * Working struct return * Pack that struct * Remove conditional packing and add example to docs * Cleanup tab/spaces * Update docs/feature_oled_driver.md Prettify formatting * Update drivers/oled/oled_driver.h Prettify formatting
* Better handle LTO_ENABLE (#9832)Drashna Jaelre2020-08-2979-99/+85
| | | | | | | | | * Better handle LTO_ENABLE Especially when calling from command line * Replace LINK_TIME_OPTIMIZATION_ENABLE with LTO_ENABLE * Remove long for LTO from show_options.mk
* More Bluetooth refactoring (#9905)Ryan2020-08-295-19/+30
|
* Update vusb to match 3rd endpoint. (#9020)yiancar2020-08-293-12/+26
| | | | | | | | | | | | | | | | | | | | | | | | | * Update vusb to match 3rd endpoint. - With the addition of https://github.com/qmk/v-usb/pull/1 a 3rd endpoint (endpoint4) becomes available. - We can assign mouse/extrakeys to that endpoint as its a desirable feature and leave rawhid and console to compete for the 2nd endpoint. NOTE: The version of vusb.c in future branch is older than master. Just remember that it will need a #error if both raw_hid and console are enabled at the same time. * Final Fixes * Update tmk_core/protocol/vusb/vusb.c * Update tmk_core/protocol/vusb/vusb.c * Update tmk_core/protocol/vusb/usbconfig.h * Update tmk_core/protocol/vusb/usbconfig.h * Update tmk_core/protocol/vusb/usbconfig.h * Update tmk_core/protocol/vusb/usbconfig.h * Updated vusb submodule to latest commit
* Remove unused CORTEX_VTOR_INIT (#10053)Ryan2020-08-2915-29/+0
|
* Remove f072 backlight warning (#10040)Joel Challis2020-08-292-6/+0
| | | | | * Remove f072 backlight warning * Remove f072 backlight warning from docs
* ARM backlight - timer implementation (#8291)Joel Challis2020-08-293-2/+169
| | | | | | | | * Add GPT timer based backlight driver * Update to tim15 to avoid conflict with audio * Update quantum/backlight/backlight_timer.c
* #define AUTO_SHIFT_SETUP (#8441)Greg Wright2020-08-293-35/+41
| | | | | | | | | * #define AUTO_SHIFT_SETUP * Clarification Changed `#ifndef` to `#ifdef` and moved enable disable outside AUTO_SHIFT_SETUP * AUTO_SHIFT_NO_SETUp
* Add ability to dump all makefile variables for the specified target. (#8256)Nick Brassel2020-08-291-1/+7
|
* Add `st-flash` flash target (#9964)Sergey Vlasov2020-08-293-0/+7
| | | | | | | | * Add `st-flash` flash target Add support for flashing the firmware via the `st-flash` utility from the STLink Tools package (https://github.com/stlink-org/stlink). * Add `st-flash` to the `qmk flash -b` output
* Keebio RGB wiring update (#7754)Danny2020-08-2911-6/+13
| | | | | | | | | | | | | | | | | * Change RGB wiring for Levinson * Update RGB wiring for Iris * Update RGB wiring for Nyquist * Update RGB wiring for Quefrency * Update RGB wiring for Viterbi * Update RGB wiring for Fourier * Update RGB wiring for BFO * Handle redefinition of RGBLED_SPLIT
* Fix Czech keycodes (#9987)David Kosorin2020-08-291-2/+2
|
* Fix joystick compile issues (#9949)Ryan2020-08-293-11/+15
|
* Noeeprom functions for rgb_matrix (#9487)Tynan Beatty2020-08-293-90/+149
| | | | | | | | | * Add eeprom_helpers for toggle, mode, sethsv, speed; add set_speed; add noeeprom versions of toggle, step, hue, sat, val, and speed * qmk cformat rgb_matrix * Add rgb_matrix_set_speed and *_noeeprom functions * Do not expose rgb_matrix_*_eeprom_helper functions
* Add support for hsv->rgb conversion without using CIE curve. (#9856)Nick Brassel2020-08-293-4/+24
| | | | | * Add support for hsv->rgb conversion without using CIE curve. * Modify anavi/macropad8 to disable unicode (was unused), otherwise firmware size is too large.
* [Keyboard] relocating boards by flehrad (#9635)flehrad2020-08-2949-4/+6
| | | Co-authored-by: flehrad <flehrad@users.noreply.github.com>
* The Key Company project consolidation (#9547)TerryMathews2020-08-29