merge latest tmk core#1
Open
gompa wants to merge 242 commits into
Open
Conversation
if TAPPING_TOGGLE is 1, then tap a single time should toggle the mods on/off each tap. Previously this was broken, this fixes it. This allows the same key to either hold (momentary mod) or tap (toggle mod, like capslock).
SERIAL_SOFT_DEBUG can be defined in the `config.h`
remove SERIAL_SOFT_DEBUG macro
Fix typo in bootmagic debug message
Fix warning in command.c
Add KEYBOARD_LOCK_ENABLE to makefile
Merge flabbergast's chibios protocol into master https://github.com/flabbergast/tmk_keyboard/tree/chibios
Timeout error may be recoverable but may not in some situations. For safety it is handled as a real error to start keyboard recognition again.
recv_data should appear to as 'sstt' when it is full with two data. Both upper and lower byte should be checked.
for better keybaord hotswap support
Without this fix Realforce 101 PS/2 fails to receive 'set indicator'
command sometimes when pressing Caps Lock and some keys simultaneously.
before fix:
____ ______
clock \___/
________
data \_______
| 100|
after fix:
____ __
clock \________/
________
data \_______
| 100| 100|
The TIMER0 ISR takes 1.5us and can affect IBMPC protocol ISR. Add ISR_NOBLOCK to allow interrupt during TIMER0 ISR.
Timeout error *could*(not always) detects when signal sequence takes beyond 1.0ms. Now this gives 2.0ms window at least to read signal sequence.
Data line should be hi while Clock line is low https://github.com/tmk/tmk_keyboard/wiki/IBM-PC-XT-Keyboard-Protocol#keyboard-soft-reset
- Fix TOGGLE Error - Fix HUBPRE - Update from upstream repo
This is not confirmed yet, test report is needed.
Fix for STALL at GET DESCRIPTOR(CONFIGURATION) tmk/USB_Host_Shield_2.0#4
See #667
System and media control keys work well with ACTION_MODS_TAP_KEY and ACTION_LAYER_TAP_KEY now.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
merge latest tmk core
for updating tmk_nuvoton