aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Adds prevent stuck modifiers to EZ defaultErez Zukerman2017-05-282-1/+3
| |/
| * tweaks default mouse speed constantsErez Zukerman2017-05-241-2/+2
| |
| * Created a dvorak keymap for Swedish developers using Visual StudioChristian Westerlund2017-05-162-0/+359
| |
| * Fix spelling of "persistent"Nikolaus Wittenstein2017-05-111-4/+4
| | | | | | | | Fixes #1201.
| * Merge pull request #1279 from awpr/masterErez Zukerman2017-05-072-26/+38
| |\ | | | | | | Change to per-key eager debouncing for ErgoDox EZ.
| | * Change to per-key eager debouncing for ErgoDox EZ.Andrew Pritchard2017-04-262-26/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | Update README for keymap “coderkun_neo2”coderkun2017-05-061-9/+2
| | |
| * | Merge tag '0.5.43' into coderkun_neo2coderkun2017-05-0634-371/+1582
| |\|
| | * Fix LCD SS pin configurationFred Sundvik2017-04-191-1/+1
| | | | | | | | | | | | | | | | | | There was a typo, so the attempted configuration proably didn't do what it should have done. I think it left the pin floating, and could cause the LCD problems issue-1230.
| | * Merge pull request #1235 from siroken3/siroken3Jack Humbert2017-04-185-0/+202
| | |\ | | | | | | | | Siroken3
| | | * fix backspace key position.Kenichi Sasaki2017-03-051-2/+2
| | | |
| | | * fix againKenichi Sasaki2017-03-041-98/+55
| | | |
| | | * change bracket key posisionKenichi Sasaki2017-02-191-14/+14
| | | |
| | | * fixKenichi Sasaki2017-02-181-2/+2
| | | |
| | | * remove reset keyKenichi Sasaki2017-02-181-4/+3
| | | |
| | | * Added JIS keymap symbolsKenichi Sasaki2017-02-181-17/+25
| | | |
| | | * copied and Meta(ESC)Kenichi Sasaki2017-02-185-0/+238
| | | |
| * | | Fix F-keys on right hand to start on first keycoderkun2017-05-061-1/+1
| | | |
| * | | Fix keymap “coderkun_neo” to use LALT instead of RALTcoderkun2017-04-011-6/+6
| | | |
| * | | Add several Unicode symbols to keymap “coderkun_neo2”coderkun2017-04-012-20/+20
| | | |
| * | | Add keymap diagrams to readme of keymap “coderkun_neo2”coderkun2017-04-011-9/+114
| | | |
| * | | Merge branch 'master' into coderkun_neo2coderkun2017-04-0175-196/+6826
| |\ \ \
| * | | | Fix return value of hex_to_keycode() function in keymap “coderkun_neo2”coderkun2016-12-281-4/+5
| | | | |
* | | | | small changesStick2017-04-182-6/+6
| |_|/ / |/| | |
* | | | Fix KEYMAP_YORUIAN macroThomas Fitzsimmons2017-04-141-19/+26
| | | | | | | | | | | | | | | | Fix the ordering of the arguments to the KEYMAP macro.
* | | | Add missing serial_link.h includeFred Sundvik2017-04-131-0/+1
| | | | | | | | | | | | | | | | | | | | Which fixes a warning when building Ergodox Infinity as a righthand master.
* | | | Fix keymap yoruian on InfinityFred Sundvik2017-04-132-23/+12
| | | |
* | | | Fix overflow warning in ordinary keymapFred Sundvik2017-04-131-1/+1
| | | |
* | | | Fix overflow warnings in dvorak_programmerFred Sundvik2017-04-131-3/+3
| | | |
* | | | Merge pull request #1213 from nstickney/masterJack Humbert2017-04-124-1/+337
|\ \ \ \ | | | | | | | | | | ErgoDox Familiar layout
| * | | | ErgoDox Familiar layout v1Stick2017-04-079-23478/+69
| | | | |
| * | | | Merge remote-tracking branch 'upstream/master'Stick2017-04-036-15/+326
| |\ \ \ \
| * | | | | unsatisfied with ESC/GRV/TAB positioningStick2017-03-271-16/+16
| | | | | |
| * | | | | Merge remote-tracking branch 'upstream/master'Stick2017-03-278-21/+74
| |\ \ \ \ \
| * | | | | | fixed unicode input issueStick2017-03-272-18/+18
| | | | | | |
| * | | | | | added README.mdnstickney2017-03-121-0/+3
| | | | | | |
| * | | | | | Merge remote-tracking branch 'upstream/master'nstickney2017-03-122-0/+602
| |\ \ \ \ \ \
| * | | | | | | added US-International supportnstickney2017-03-122-53/+104
| | | | | | | |
| * | | | | | | Merge remote-tracking branch 'upstream/master'nstickney2017-03-086-2/+560
| |\ \ \ \ \ \ \
| * | | | | | | | found LT(layer, kc) so I could take out TapDance codenstickney2017-03-082-112/+20
| | | | | | | | |
| * | | | | | | | corralled image filesnstickney2017-03-088-13/+13
| | | | | | | | |
| * | | | | | | | SLASH and WHACK functions added (based on algernon's CT_TA)nstickney2017-03-071-37/+0
| | | | | | | | |
| * | | | | | | | SLASH and WHACK functions added (based on algernon's CT_TA)nstickney2017-03-074-33/+157
| | | | | | | | |
| * | | | | | | | Merge remote-tracking branch 'upstream/master'nstickney2017-03-075-0/+280
| |\ \ \ \ \ \ \ \
| * | | | | | | | | making numbers more familiarnstickney2017-02-251-93/+131
| | | | | | | | | |
| * | | | | | | | | first two layers of ErgoDox Familiar completeCnstickney2017-02-241-13/+55
| | | | | | | | | |
| * | | | | | | | | initial layer of familiar layout)nstickney2017-02-231-37/+67
| | | | | | | | | |
| * | | | | | | | | Merge https://github.com/qmk/qmk_firmwarenstickney2017-02-233-13/+261
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | familiar layout graphics, etcnstickney2017-02-237-0/+23475
| | | | | | | | | | |
| * | | | | | | | | | familiar layout v0.1 from ErgoDox-EZ configuratornstickney2017-02-191-0/+111
| | | | | | | | | | |