summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-25Update checking board master function (#12493)calebchongc
changed is_master to is_keyboard_master()
2021-04-25Do not leak weak mods from tap dance to the interrupting keypress (#12471)Sergey Vlasov
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.
2021-04-25Format code according to conventions (#12681)github-actions[bot]
Co-authored-by: QMK Bot <hello@qmk.fm>
2021-04-25Fix how USB queue overflow is handled in chibios. (#12576)Purdea Andrei
* 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
2021-04-25Add RGB matrix suspend wake function for Planck/rev6 (#12290)Albert Y
* 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>
2021-04-25Fix CLI incorrectly following `DEFAULT_FOLDER` (#12529)Nick Brassel
* Attempt to sort out incorrectly following DEFAULT_FOLDER. * Fix CI checks. * qmk pyformat
2021-04-25[Keymap] Add Git keymap for ANAVI Macro Pad 8 (#12436)Leon Anavi
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>
2021-04-25Add lm60n keyboard (#12408)gkeyboard
Add lm60n keyboard
2021-04-25Add m3n3van rev2 (#12405)Matthew Dias
* Add m3n3van rev2 * Add via support
2021-04-25Add VIA support for Filco Majestouch 2 /w The Tiger Lily (#12401)Christian Fehmer
2021-04-25not accessible and not needed anyway for a test keymap (#12366)Pavlos Vinieratos
2021-04-22adding keyboard (#12414)SonOfAres
* 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>
2021-04-22VIA support for Planck Rev6 (#9144)George Wietor
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>
2021-04-22Delilah keyboard added (#12638)rainkeebs
* 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>
2021-04-21Personal keymap for dztech DZ60RGB plus README.md (#12485)MechMaster48
* Personal keymap and README to go along with it. * Noticed typo in README and removed name from comment in keymap * Added GPL copyright notice
2021-04-20Update for the dodger keymap for the Planck (#12456)Joshua Coffey
2021-04-20Add additional info to PR Checklist (#12630)Drashna Jaelre
Co-authored-by: Nick Brassel <nick@tzarc.org>
2021-04-20Fix for gcc10 teensy_lc eeprom build warning (#12587)Joel Challis
2021-04-20[Keyboard] Siris (#12415)Brandon Claveria
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Swiftrax <swiftrax@gmail.com>
2021-04-20[Keyboard] add adelais rev4 (#12443)mechlovin
2021-04-20[Keyboard] Added BKS65 Solder PCB (#12451)Felix Jen
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-20[Keyboard] Add amigopunk, a handwired 75% ALPS (#12489)Christiano Haesbaert
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-20[Keyboard] Matrix 1.2og AVR PCB - VIA support (#12534)kb-elmo
2021-04-20[Keyboard] Added support for the older no_led revision (#12563)Mikkel Jeppesen
2021-04-20[Keyboard] Update ISO Macro vendor ID to meet VIA requirement (#12564)duoshock
Co-authored-by: online <33636898+online@users.noreply.github.com>
2021-04-20[Keyboard] fix bella debounce (#12568)kb-elmo
2021-04-20[Keyboard] Add Acperience12 macropad (#12573)yynmt
Co-authored-by: yynmt <yynmt@yynmt.com>
2021-04-20[Keyboard] Fix and improve SPI transport in the Lagrange (#12606)Dimitris Papavasiliou
Co-authored-by: Dimitris Papavasiliou <dpapavas@gmail.com>
2021-04-20[Keyboard] doodle macropad - 03/14 (#12243)AlisGraveNil
Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
2021-04-20[Keyboard] Refactor IF87_rev1 (#12574)mechlovin
2021-04-20[Keyboard] Fixing files for Orto4exent (#12607)tszaboo
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-20[Keyboard] Set OLED_DISPLAY_128X64 for Arch-36 (#12609)obosob
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-20[Keyboard] Add millipad keypad and default keymap (#12522)GLozares
2021-04-20[Keyboard] Pachi Mini 32u4 (#12533)Xelus22
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-20Initial firmware for Forever65 (#12572)Joel Challis
2021-04-19[Keyboard] Carbo65 (#12406)yiancar
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-19[Keymap] Minifan minor issues (#12592)Jos Boersema
2021-04-19[Keyboard] Add Wanderland - An Alice-layout keyboard (#12516)kiwikey
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-19[Keyboard] Add jkdlab/binary_monkey (#12374)Jaehee
Co-authored-by: Ryan <fauxpark@gmail.com>
2021-04-19Fix bm68rgb led map (#12503)peepeetee
2021-04-19[Keymap] Iracing replay keymap (#12461)AaronVerDow
Co-authored-by: Aaron VerDow <aaron@verdow.com>
2021-04-19[Keymap] Fix handling of RV_LOCK and RV_SNAP for windows (#12498)Robert Verst
Co-authored-by: Robert Verst <robert.verst@tobit.com>
2021-04-19[Keyboard] VIA Support for LCK75 (#12402)jack
2021-04-19[Keyboard] Update RAMA WORKS M50-A (#12459)Wilba
2021-04-19eclipse: recommend changing the default project make target (#12447)Michael Stapelberg
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
2021-04-19[Keyboard] Update dz60rgb default keymap (#12488)Benedict Tan
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.
2021-04-19Fix F303 audio output on A4 with the dac_basic driver (#12480)Sergey Vlasov
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.
2021-04-18[Keymap] add kinesis/keymaps/stapelberg (#12430)Michael Stapelberg
2021-04-18New keyboard keymap, small keymap updates to mm2 keymap (#12310)Alexander Kagno
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Alex <alex@turncommerce.com>
2021-04-18[Keyboard] Add wilba.tech WT60-G2 (#12395)Wilba