summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update checking board master function (#12493)calebchongc2021-04-251-4/+4
| | | changed is_master to is_keyboard_master()
* Do not leak weak mods from tap dance to the interrupting keypress (#12471)Sergey Vlasov2021-04-251-0/+4
| | | | | | | | | | | | | Tap dance callbacks may register weak mods; one case when it happens is when a tap dance registers a key with modifiers. When the tap dance is interrupted by pressing another key, these weak mods could affect the interrupting key (normally any stale weak mods are cleared at the start of action_exec() when handling a keypress event, but the tap dance interrupt check code is called later, and the weak mods left by that code were not cleared). Add another clear_weak_mods() call to preprocess_tap_dance() to make sure that the interrupting keypress is not affected by unrelated weak mods from the previous tap dance. Fixes #12445.
* Format code according to conventions (#12681)github-actions[bot]2021-04-251-2/+2
| | | Co-authored-by: QMK Bot <hello@qmk.fm>
* Fix how USB queue overflow is handled in chibios. (#12576)Purdea Andrei2021-04-253-21/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix how USB queue overflow is handled in chibios. This commit reverts PR 12472 (commit c823fe2d3f23ed090e36ce39beed4c448298bd2f), and it implements the original intent of the commit in a better way. The original intent of the above mentioned commit was to not deadlock the keyboard when console is enabled, and hid_listen is not started. The above mentioned commit had a few drawbacks: 1) When a lot of data was printed to the console, the queue would get full, and drop data, even if hid_listen was running. (For example having matrix debug enabled just didn't work right at all) 2) I believe the function in which this was implemented is used by all other USB endpoints, so with the above change, overflow, and data loss could happen in other important functions of QMK as well. This commit implements deadlock prevention in a slightly similar way to how it's done on AVR. There is an additional static local variable, that memorizes whether the console has timeouted before. If we are in the timeouted=false state, then we send the character normally with a 5ms timeout. If it does time out, then hid_listen is likely not running, and future characters should not be sent with a timeout, but those characters should still be sent if there is space in the queue. The difference between the AVR implementation and this one is that the AVR implementation checks the queue state directly, but this implementation instead attempts to write the character with a zero timeout. If it fails, then we remain in the timeouted=true state, if it succeeds, then hid_listen started removing data from the queue, so we can go out of the timeouted=true state. * Added comment explaining the timeouted logic to console flow control. * Console flow control: refactor chibios flowcontrol code to make it more readable, and rename the timeouted variable to timed_out on both chibios and lufa. Changed comments to says timed_out is an approximation of listener_disconnected, to make it clear that it's not the same thing * fix typo
* Add RGB matrix suspend wake function for Planck/rev6 (#12290)Albert Y2021-04-252-0/+14
| | | | | | | | | | * Add RGB matrix suspend wake function for Planck/rev6 * Update suggested definition to allow user override. Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: filterpaper <filterpaper@localhost> Co-authored-by: Nick Brassel <nick@tzarc.org>
* Fix CLI incorrectly following `DEFAULT_FOLDER` (#12529)Nick Brassel2021-04-251-7/+12
| | | | | | | * Attempt to sort out incorrectly following DEFAULT_FOLDER. * Fix CI checks. * qmk pyformat
* [Keymap] Add Git keymap for ANAVI Macro Pad 8 (#12436)Leon Anavi2021-04-252-0/+167
| | | | | | | | | | | | | | | | | | | | | Git keymap for ANAVI Macro Pad 8 with the following shortcuts. On the first row from left to right: - git status - git log - git pull - git push On the second row from left to right: - git diff - git add - git commit - FN key to switch to the 2nd layout and control lights Reduce the number of supported RGB animations and effects in config.h to shrink the firmware size and fit it on the device. Signed-off-by: Leon Anavi <leon@anavi.org>
* Add lm60n keyboard (#12408)gkeyboard2021-04-2511-0/+1045
| | | Add lm60n keyboard
* Add m3n3van rev2 (#12405)Matthew Dias2021-04-2510-0/+367
| | | | | * Add m3n3van rev2 * Add via support
* Add VIA support for Filco Majestouch 2 /w The Tiger Lily (#12401)Christian Fehmer2021-04-254-2/+74
|
* not accessible and not needed anyway for a test keymap (#12366)Pavlos Vinieratos2021-04-251-10/+0
|
* adding keyboard (#12414)SonOfAres2021-04-2211-0/+393
| | | | | | | | | | | | | | | | | | | | | * adding keyboard * Update keyboards/iriskeyboards/readme.md - picture size Co-authored-by: Ryan <fauxpark@gmail.com> * Delete iriskeyboards.json, it belongs in VIA repo * Update info.json * Update readme.md * Update keyboards/iriskeyboards/keymaps/default/keymap.c Removing unnecessary layers Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* VIA support for Planck Rev6 (#9144)George Wietor2021-04-2211-4/+115
| | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: George Wietor <george@LIGHT-GRAY.local> Co-authored-by: Jack Humbert <jack.humb@gmail.com>
* Delilah keyboard added (#12638)rainkeebs2021-04-229-0/+240
| | | | | | | | | | | | | * Delilah keyboard added * Apply suggestions from code review Co-authored-by: Drashna Jaelre <drashna@live.com> * removed unnecessary lines as per review * removed unnecessary lines as per review Co-authored-by: Drashna Jaelre <drashna@live.com>
* Personal keymap for dztech DZ60RGB plus README.md (#12485)MechMaster482021-04-212-0/+94
| | | | | | | * Personal keymap and README to go along with it. * Noticed typo in README and removed name from comment in keymap * Added GPL copyright notice
* Update for the dodger keymap for the Planck (#12456)Joshua Coffey2021-04-203-168/+74
|
* Add additional info to PR Checklist (#12630)Drashna Jaelre2021-04-201-0/+9
| | | Co-authored-by: Nick Brassel <nick@tzarc.org>
* Fix for gcc10 teensy_lc eeprom build warning (#12587)Joel Challis2021-04-201-1/+1
|
* [Keyboard] Siris (#12415)Brandon Claveria2021-04-209-0/+554
| | | | Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Swiftrax <swiftrax@gmail.com>
* [Keyboard] add adelais rev4 (#12443)mechlovin2021-04-209-0/+155
|
* [Keyboard] Added BKS65 Solder PCB (#12451)Felix Jen2021-04-209-0/+388
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keyboard] Add amigopunk, a handwired 75% ALPS (#12489)Christiano Haesbaert2021-04-207-0/+336
| | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keyboard] Matrix 1.2og AVR PCB - VIA support (#12534)kb-elmo2021-04-204-18/+92
|
* [Keyboard] Added support for the older no_led revision (#12563)Mikkel Jeppesen2021-04-208-17/+57
|
* [Keyboard] Update ISO Macro vendor ID to meet VIA requirement (#12564)duoshock2021-04-201-1/+1
| | | Co-authored-by: online <33636898+online@users.noreply.github.com>
* [Keyboard] fix bella debounce (#12568)kb-elmo2021-04-202-2/+2
|
* [Keyboard] Add Acperience12 macropad (#12573)yynmt2021-04-2016-0/+442
| | | Co-authored-by: yynmt <yynmt@yynmt.com>
* [Keyboard] Fix and improve SPI transport in the Lagrange (#12606)Dimitris Papavasiliou2021-04-201-24/+57
| | | Co-authored-by: Dimitris Papavasiliou <dpapavas@gmail.com>
* [Keyboard] doodle macropad - 03/14 (#12243)AlisGraveNil2021-04-206-0/+156
| | | | Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
* [Keyboard] Refactor IF87_rev1 (#12574)mechlovin2021-04-203-4/+10
|
* [Keyboard] Fixing files for Orto4exent (#12607)tszaboo2021-04-202-4/+5
| | | | | Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keyboard] Set OLED_DISPLAY_128X64 for Arch-36 (#12609)obosob2021-04-201-0/+2
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keyboard] Add millipad keypad and default keymap (#12522)GLozares2021-04-208-0/+266
|
* [Keyboard] Pachi Mini 32u4 (#12533)Xelus222021-04-206-0/+122
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* Initial firmware for Forever65 (#12572)Joel Challis2021-04-209-0/+366
|
* [Keyboard] Carbo65 (#12406)yiancar2021-04-1911-0/+292
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keymap] Minifan minor issues (#12592)Jos Boersema2021-04-1919-316/+508
|
* [Keyboard] Add Wanderland - An Alice-layout keyboard (#12516)kiwikey2021-04-1911-0/+522
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* [Keyboard] Add jkdlab/binary_monkey (#12374)Jaehee2021-04-198-0/+248
| | | Co-authored-by: Ryan <fauxpark@gmail.com>
* Fix bm68rgb led map (#12503)peepeetee2021-04-191-1/+1
|
* [Keymap] Iracing replay keymap (#12461)AaronVerDow2021-04-193-0/+174
| | | Co-authored-by: Aaron VerDow <aaron@verdow.com>
* [Keymap] Fix handling of RV_LOCK and RV_SNAP for windows (#12498)Robert Verst2021-04-191-32/+7
| | | Co-authored-by: Robert Verst <robert.verst@tobit.com>
* [Keyboard] VIA Support for LCK75 (#12402)jack2021-04-193-5/+60
|
* [Keyboard] Update RAMA WORKS M50-A (#12459)Wilba2021-04-194-102/+10
|
* eclipse: recommend changing the default project make target (#12447)Michael Stapelberg2021-04-191-13/+15
| | | | | | | | This is required for example for quickly iterating with a debugger, where Eclipse will build the project automatically. It’s also shorter than the previous steps, which I think might not have been updated since https://qmk.fm/changes/2017-09-08-making-from-root-and-no-more-makefiles
* [Keyboard] Update dz60rgb default keymap (#12488)Benedict Tan2021-04-191-8/+1
| | | | | The keymap for this PCB as of April 5, 2020 has a 4rth, largely superfluous layer, creating a total of 5 layers. When ported to VIA, this results in a layer that users can access but cannot edit. I propose removing this layer completely along with it's access from the default.
* Fix F303 audio output on A4 with the dac_basic driver (#12480)Sergey Vlasov2021-04-191-1/+1
| | | | | | | The dac_basic driver did not work properly with `#define AUDIO_PIN A4` (instead of configuring the A4 pin, the driver actually was switching the A5 pin to analog mode, breaking any other usage of that pin in addition to emitting a distorted signal on the improperly configured A4 pin). Fix the code to configure the A4 pin as intended.
* [Keymap] add kinesis/keymaps/stapelberg (#12430)Michael Stapelberg2021-04-183-0/+99
|
* New keyboard keymap, small keymap updates to mm2 keymap (#12310)Alexander Kagno2021-04-1811-70/+272
| | | | Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Alex <alex@turncommerce.com>
* [Keyboard] Add wilba.tech WT60-G2 (#12395)Wilba2021-04-189-0/+213
|