summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Allow for `qmk mass-compile all:<keymap>` (#22116)Nick Brassel2023-09-293-106/+177
| | | | Co-authored-by: Joel Challis <git@zvecr.com>
* Allow inline generation of compile_commands.json while doing a `qmk ↵Nick Brassel2023-09-282-31/+48
| | | | compile`, using `--compiledb` (#21549)
* Fix up `qmk mass-compile` makefile indenting. (#22115)Nick Brassel2023-09-231-16/+16
|
* Allow for `qmk compile -kb all`. (#22022)Nick Brassel2023-09-223-38/+83
|
* `qmk format-json`: Add an in-place mode to format json command (#21610)Andrew Kannan2023-09-141-2/+13
|
* Add *_MATRIX_LED_COUNT generation (#21110)Joel Challis2023-08-272-0/+7
|
* Remove layout aliases from keyboard_aliases.hjson (#21658)Joel Challis2023-08-011-3/+0
|
* keycode aliases: work around ChibiOS ch.h include guard (#21497)Ryan2023-07-311-0/+5
|
* CLI: Improve error messages when layout key matrix row/col is OOB (#21640)Ryan2023-07-311-5/+10
|
* [Core] Update ChibiOS-Contrib (#21553)Stefan Kerkmann2023-07-171-0/+0
|
* feat, docs: WB32 flashing (#21217)Less/Rikki2023-07-082-3/+16
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2023-07-071-8/+8
|\
| * Adjust width requirement for big enter (#21470)Ryan2023-07-081-8/+8
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-07-071-24/+14
|\|
| * [Refactor] Python-ify QP's converter code (#20102)Pablo Martínez2023-07-071-24/+14
| |
* | STM32H723 support (#21352)Nick Brassel2023-06-281-1/+3
| |
* | [Bug] Fix non-functional S3 wakeup / resume from suspense (#19780)Stefan Kerkmann2023-06-261-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update ChibiOS-Contrib for USB suspend fixes * Remove S3 wakup workaround ChibiOS OTGv1 driver has a remote wakeup bug that prevents the device to resume it's operation. 02516cbc24647f522eee975e69cc0c8a925470eb introduced a hotfix that forcefully restarted the usb driver as a workaround. This workaround broke multiple boards which do not use this driver / peripheral. With the update of ChibiOS this hotfix is now obsolete. * Remove restart_usb_driver overrides they are no longer necessary as the workaround is not needed anymore for stm32f4 * Remove unused RP_USB_USE_SOF_INTR defines The SOF interrupt is enabled dynamically by the RP2040 usb driver
* | Consolidate `KEYBOARD_OUTPUT`+`KEYMAP_OUTPUT`=>`INTERMEDIATE_OUTPUT` (#21272)Nick Brassel2023-06-213-24/+21
|/
* Slightly refine `g_led_config` parsing (#21170)Ryan2023-06-081-6/+11
|
* `qmk find`: Fix handling of functions in filters (#21090)Sergey Vlasov2023-05-301-4/+4
| | | | | | | | | | | | | | | | | | | | Functions in filters did not work properly except when used in the last (or only) filter. The problem was caused by the peculiarity of the `lambda` behavior in Python — any variables from the outer scope are captured only by reference, therefore any subsequent reassignment of those variables is propagated to all lambdas created earlier in the same scope. Together with the laziness of `filter()` (it returns an iterator which performs filtering on demand) this resulted in all function filters using the values of the `key` and `value` variables which correspond to the last filter in the sequence, therefore the result of filtering was wrong if some filter with a function was not the last one in the sequence. Apparently the shortest way to make a Python lambda capture some variables by value is to add arguments with default values for such variables (default values are evaluated when the lambda is created, and any subsequent reassignments in the outer scope no longer changes them). This makes filters with functions work properly even when such filters are not at the last position in the sequence.
* Fix up `qmk find` when not specifying filters. (#21059)Nick Brassel2023-05-272-1/+5
|
* Merge remote-tracking branch 'origin/master' into developQMK Bot2023-05-261-17/+19
|\
| * [Bugfix + Refactor] `qmk painter-convert-graphics` (#19994)Pablo Martínez2023-05-261-17/+19
| |
* | qmk info - Remove printing of "Keyboard Folder" (#21033)Joel Challis2023-05-241-1/+0
| |
* | Update json2c to use dump_lines (#21013)Joel Challis2023-05-222-18/+5
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-05-201-9/+8
|\|
| * `qmk generate-make-dependencies` improvements (#21001)Nick Brassel2023-05-201-9/+8
| | | | | | | | | | * Recommendations from @sigprof * Fix CI tests
* | `qmk format-json`: Expose full key path and respect `sort_keys` (#20836)Ryan2023-05-209-52/+48
| |
* | `qmk find`: usability improvements (#20440)Ryan2023-05-203-20/+50
| |
* | Fix English word list retrieval in qmk generate-autocorrect-data (#20915)Peter2023-05-201-0/+6
| |
* | CLI: Improve keymap folder resolution (#20981)Ryan2023-05-195-13/+32
| |
* | Merge remote-tracking branch 'upstream/master' into developNick Brassel2023-05-152-0/+57
|\|
| * Generate `make` dependency file during build for info.json's etc. (#20451)Nick Brassel2023-05-152-0/+57
| |
* | Fix `test_json2c_no_json()` (#20756)Ryan2023-05-062-2/+2
| |
* | Remove `FLIP_HALF` layouts and move to data driven (#20588)Ryan2023-04-301-2/+6
| |
* | Update ChibiOS to latest stable 21.11.x (#20470)Nick Brassel2023-04-191-0/+0
| |
* | Encodermap direction define. (#20454)Nick Brassel2023-04-151-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-04-091-3/+5
|\|
| * Add autocomplete to generate-compilation-database (#20387)Dasky2023-04-091-3/+5
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-04-071-1/+3
|\|
| * Avoid generating empty ENCODER_RESOLUTION (#20179)Joel Challis2023-04-071-1/+3
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-04-071-1/+1
|\|
| * Add Discord webhook at end of each CI run. (#20355)Nick Brassel2023-04-071-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-04-041-1/+2
|\|
| * Resolve keyboard names for `qmk mass-compile`. (#20335)Nick Brassel2023-04-041-1/+2
| |
* | `qmk info`: account for ISO enter when calculating layout X offset (#20325)Ryan2023-04-041-1/+6
| |
* | Append user variables to the end of make command (#20177)Albert Y2023-04-031-3/+3
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-03-301-2/+2
|\|
| * [QP] Fix up delta frame boundaries (#20296)Nick Brassel2023-03-311-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into developQMK Bot2023-03-291-12/+11
|\|