summaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox/ez/config.h
Commit message (Collapse)AuthorAgeFilesLines
* Adds prevent stuck modifiers to EZ defaultErez Zukerman2017-05-281-0/+2
|
* Change to per-key eager debouncing for ErgoDox EZ.Andrew Pritchard2017-04-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Empirically, waiting for N consecutive identical scans as a debouncing strategy doesn't work very well for the ErgoDox EZ where scans are very slow compared to most keyboards. Instead, debounce the signals by eagerly reporting a change as soon as one scan observes it, but then ignoring further changes from that key for the next N scans. This is implemented by keeping an extra matrix of uint8 countdowns, such that only keys whose countdown is currently zero are eligible to change. When we do observe a change, we bump that key's countdown to DEBOUNCE. During each scan, every nonzero countdown is decremented. With this approach to debouncing, much higher debounce constants are tolerable, because latency does not increase with the constant, and debounce countdowns on one key do not interfere with events on other keys. The only negative effect of increasing the constant is that the minimum duration of a keypress increases. Perhaps I'm just extremely unlucky w.r.t. key switch quality, but I saw occasional bounces even with DEBOUNCE=10; with 15, I've seen none so far. That's around 47ms, which seems like an absolutely insane amount of time for a key to be bouncy, but at least it works.
* disables space cadet rolloverErez Zukerman2017-04-031-0/+3
|
* turn off rgb_midi in ezJack Humbert2017-01-231-1/+1
|
* Update config.hJack Humbert2017-01-021-1/+1
|
* Merge branch 'master' of github.com:jackhumbert/qmk_firmwareJack Humbert2016-12-191-0/+2
|\
| * Allow power consumption to be set per-keyboard.Kyle Smith2016-12-141-0/+2
| |
* | rgb clean-up, api clean-upJack Humbert2016-12-191-0/+1
|/
* guess i didnt pullJack Humbert2016-11-291-11/+0
|
* Merge branch 'wu5y7' of github.com:jackhumbert/qmk_firmware into wu5y7Jack Humbert2016-11-291-0/+11
|\
| * Pulls LED config into common config for EZErez Zukerman2016-11-281-0/+11
| |
* | enable rgblight by default for ezJack Humbert2016-11-291-0/+11
|/
* fix infinityJack Humbert2016-11-211-0/+2
|
* Fix config.h include guardsFred Sundvik2016-07-291-2/+2
|
* Move some of the Ergodox config settings to sharedFred Sundvik2016-07-291-24/+5
|
* Initial structure for Ergodox as subprojectsFred Sundvik2016-07-291-0/+84
Only the EZ default keymaps compiles at the moment though.