summaryrefslogtreecommitdiffstats
path: root/quantum
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into developQMK Bot2022-04-091-1/+1
|\
| * [Bug] Fix matrix scan reporting interval (#16825)Simon Arlott2022-04-091-1/+1
| |
* | Joystick feature updates (#16732)Ryan2022-03-264-36/+50
| | | | | | | | | | | | | | * Joystick feature updates * Move new functions to joystick.h * Docs
* | [Core] Add compile/make macro to core (#15959)Drashna Jaelre2022-03-172-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [Core] Add KC_MAKE keycode to core fix linting fix testing error work around test idiocyncracies fix more lint something something stupid tests add doc * updates based on feedback * Add bad names * Fixup docs * semantics but cleaner Co-authored-by: precondition <57645186+precondition@users.noreply.github.com> * Hide oneshot checks behind preprocessors * Move no-compile option around * Fix formatting * make shift optional * Make opt in * fix formatting * update send string function name Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: precondition <57645186+precondition@users.noreply.github.com> Co-authored-by: Joel Challis <git@zvecr.com>
* | Rename TICK to TICK_EVENT to prevent naming conflicts (#16649)Stefan Kerkmann2022-03-142-2/+2
| |
* | Mousekeys fix (#16640)jack2022-03-131-0/+1
| |
* | Fix oneshot toggle logic (#16630)Drashna Jaelre2022-03-145-16/+15
| | | | | | | | | | | | | | * Fix oneshot toggle logic * Enable oneshots by default * Decrement eeconfig magic number due to eeconfig changes
* | [Core] Move `has_mouse_report_changed` function to `report.c` (#16543)Drashna Jaelre2022-03-143-23/+15
| | | | | | | | | | | | | | * Move 'has_mouse_report_changed' checkto report.c * change mousekeys to use memcpy * fix linting issues
* | Fix flipped One Shot logic (#16617)Pascal Getreuer2022-03-111-3/+4
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-03-101-11/+0
|\|
| * Remove `matrix_key_count()` (#16603)Ryan2022-03-101-11/+0
| | | | | | | | | | * Remove `matrix_key_count()` * Remove `matrix_bitpop()`
* | Missed some erroneous prints. (#16597)Nick Brassel2022-03-102-10/+12
| |
* | Fixup builds. (#16596)Nick Brassel2022-03-091-6/+7
| |
* | Fix missing definition for non-encoder case. (#16593)Nick Brassel2022-03-091-8/+17
| |
* | Add support for encoder mapping. (#13286)Nick Brassel2022-03-0910-50/+240
| |
* | Asymmetric encoders, encoder tests. (#16068)Nick Brassel2022-03-0821-130/+895
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-03-082-9/+9
|\|
| * [Bug] Rename has_mouse_report_changed parameters (#16417)ZiTe2022-03-072-9/+9
| | | | | | | | | | | | | | Fixes compilation issues when bluetooth is enabled, due to issues with cpp used by bluetooth code. Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
* | Remove `send_unicode_hex_string()` (#16518)Ryan2022-03-042-34/+0
|/
* [Bug] fix v-usb connection enumeration, ifdef workaround (#16511)Gompa2022-03-031-0/+4
| | | Co-authored-by: Joel Challis <git@zvecr.com>
* Format code according to conventions (#16421)QMK Bot2022-02-212-54/+39
|
* Merge remote-tracking branch 'upstream/master' into developfauxpark2022-02-221-1/+7
|\
| * Fix a potential bug in encoder_init(). (#16372)Takeshi ISHII2022-02-211-1/+5
| | | | | | After executing `setPinInputHigh(pin)`, it is necessary to wait for the charging time to read from the corresponding pin. This is the same as requiring `matrix_output_unselect_delay()` after doing `unselect_row()` in matrix.c.
* | Merge remote-tracking branch 'upstream/master' into developfauxpark2022-02-191-2/+2
|\|
| * Fix build error for LED Matrix effect solid_reactive_wide. (#16383)Joakim Tufvegren2022-02-171-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developDrashna Jael're2022-02-171-0/+1
|\|
| * [Bug] Re-add call to `suspend_power_down_kb()` (#16382)Joakim Tufvegren2022-02-171-0/+1
| |
* | Format code according to conventions (#16322)QMK Bot2022-02-12160-1437/+2471
| |
* | Fix right side ws2812 leds having two indices (#15985)Dasky2022-02-111-3/+8
| | | | | | | | | | * Fix right side leds having two indices * remove redundant left check
* | Pass in the keyrecord_t of the dual-role/tapping key when calling per-key ↵precondition2022-02-113-11/+11
| | | | | | | | | | | | | | tap hold functions (#15938) * Replace keyp by &tapping_key in the record arg of per-key tap hold funcs * Replace NULL by &(keyrecord_t){} in 2nd arg of get_tapping_term
* | Various fixes for matrix _RIGHT handling (#16292)Joel Challis2022-02-111-8/+8
| | | | | | | | | | * Various fixes for matrix _RIGHT handling * clang
* | Merge remote-tracking branch 'upstream/master' into developNick Brassel2022-02-091-0/+15
|\|
| * Add support for driving unselected row/col. (#16278)Nick Brassel2022-02-091-0/+15
| |
* | Add layout change callbacks to VIA (#16087)Drashna Jaelre2022-02-062-0/+5
| | | | | | | | | | * Add layout change callbacks to VIA * Update worklouder example
* | Add RGB matrix & LED Matrix support for IS31FL3742A, IS31FL3743A, ↵MasterSpoon2022-02-064-2/+106
| | | | | | | | | | IS31FL3745, IS31FL3746A (#14989) Co-authored-by: Xelus22 <17491233+Xelus22@users.noreply.github.com>
* | [Bug] Fix layer_state restoration at end of dynamic macro feature (#16230)Desprez Jean-Marc2022-02-061-1/+1
| |
* | RGB Matrix: Reload from EEPROM (#15923)Adam Lickel2022-02-042-0/+13
| | | | | | Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* | Format code according to conventions (#16211)QMK Bot2022-02-041-7/+5
| |
* | [Core] Add Pixel Flow RGB matrix effect (#15829)Albert Y2022-02-052-0/+52
| | | | | | | | | | | | | | | | | | | | | | * Initial PIXEL FLOW matrix effect commit * Commit suggested use of rgb_matrix_check_finished_leds Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * Code change support for split RGB Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-02-042-52/+0
|\|
| * Revert "[Core] Add Pixel Flow RGB matrix effect (#15829)" (#16209)Nick Brassel2022-02-052-52/+0
| | | | | | This reverts commit e8fa329073d8752cad9b11b90287fd20f130ac6f.
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-02-042-0/+52
|\|
| * [Core] Add Pixel Flow RGB matrix effect (#15829)Albert Y2022-02-052-0/+52
| | | | | | | | | | | | | | | | | | | | | | * Initial PIXEL FLOW matrix effect commit * Commit suggested use of rgb_matrix_check_finished_leds Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * Code change support for split RGB Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* | Initial migration of suspend callbacks (#16067)Joel Challis2022-02-051-23/+0
| | | | | | | | | | * Initial migration of suspend logic * Add header
* | Don't make EEPROM size assumptions with dynamic keymaps. (#16054)Nick Brassel2022-02-021-13/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Don't make EEPROM size assumptions with dynamic keymaps. * Add support for checking against emulated flash, error out if someone attempts to build a board without specifying EEPROM size. * Reorder defines so that MCU is considered last. * Refactor EEPROM definitions for simplicity. * Fix max sizing of kabedon/kabedon980. * Fix max sizing of mechlovin/olly/jf. * Fix unit tests. * Review comments, add messages with values during build failures.
* | Format code according to conventions (#16110)QMK Bot2022-01-291-3/+2
| |
* | Combo `TAP_CODE_DELAY` and `clear_weak_mods` (#15866)Pete Sevander2022-01-281-0/+13
| |
* | Adjust tap_code16 to account for TAP_HOLD_CAPS_DELAY (#15635)Ga682022-01-281-3/+6
| | | | | | Co-authored-by: Ga68 <github.ga68.e@grxme.com>
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2022-01-271-3/+2
|\|
| * Fixes for slovak language-specific keycodes (#16019)KraXen722022-01-271-3/+2
| |