Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-24 | Fix typo | Dario Giovannetti | |
2017-06-23 | updated README.md | Stick | |
2017-06-23 | Merge remote-tracking branch 'upstream/master' | Stick | |
2017-06-23 | added media keys; many bug fixes | Stick | |
2017-06-23 | Doc updates | Fredric Silberberg | |
2017-06-23 | Copy/paste additions. | Fredric Silberberg | |
2017-06-23 | Added backlight control keys | Fredric Silberberg | |
2017-06-23 | Added a few more VS macros and another ctrl | Fredric Silberberg | |
2017-06-23 | Small keymap layout updates | Fredric Silberberg | |
2017-06-22 | added tapdance locking | Stick | |
2017-06-22 | Merge remote-tracking branch 'upstream/master' | Stick | |
2017-06-22 | Merge pull request #1331 from ariasuni/master | Erez Zukerman | |
Fix undefined reference errors with avr-gcc 7.1 | |||
2017-06-18 | Merge pull request #1408 from fredizzimo/fix_build_improve_travis | Jack Humbert | |
Fix the two failing keymaps and improve the travis build script | |||
2017-06-18 | Merge pull request #1361 from fredizzimo/ergodox_infinity_backlight | Jack Humbert | |
Add Ergodox Infinity backlight support | |||
2017-06-18 | Add missing include to Ergodox Belak keymap | Fred Sundvik | |
2017-06-16 | ergodox: initial addition of belak theme | Kaleb Elwert | |
Imported from external repo https://github.com/belak/ergodox-layout at commit 233008ad8c46a85cb118fca0be093c3e751075b0 | |||
2017-06-16 | Make sure backlight is in the range 0-100 | Fred Sundvik | |
2017-06-15 | Fix typo in BACKLIGHT_ENABLE | Fred Sundvik | |
2017-06-11 | remove .hex, .PNG, .jpg | Jack Humbert | |
2017-06-11 | remove the rest of the .pngs | Jack Humbert | |
2017-06-11 | remove most .pngs | Jack Humbert | |
2017-06-08 | Revert "ugly workaround for ErgoDoxEZ LED bugs: turn 'em all off" | Stick | |
This reverts commit f397402e101774eedd1748b1e31c7386f927d4ed. | |||
2017-06-08 | trying to fix LEDs | Stick | |
2017-06-08 | Merge remote-tracking branch 'upstream/master' | Stick | |
2017-06-03 | Add backlight support to the default Ergodox Infinity animations | Fred Sundvik | |
2017-06-03 | Add backlight control to the IS31FL3731 driver | Fred Sundvik | |
2017-06-03 | Ergodox Adam keymap | Adam Bell | |
2017-06-03 | Turn off LED matrix by default | Fred Sundvik | |
2017-06-03 | Let BACKLIGHT_ENABLE control the Infinity LEDs | Fred Sundvik | |
2017-06-02 | ugly workaround for ErgoDoxEZ LED bugs: turn 'em all off | Stick | |
2017-06-02 | moved alt out from under space | Stick | |
2017-06-02 | Merge remote-tracking branch 'upstream/master' | Stick | |
2017-05-31 | Update licensing on visualizer.c | Fredric Silberberg | |
2017-05-31 | Updated readme | Fredric Silberberg | |
2017-05-31 | Added several new macros | Fredric Silberberg | |
2017-05-31 | Fixed numpad 0 layout | Fredric Silberberg | |
2017-05-30 | Use code blocks for keyboard layouts | Fredric Silberberg | |
2017-05-30 | Completed iteration 1 of my layout | Fredric Silberberg | |
2017-05-30 | Added initial keymap files | Fredric Silberberg | |
2017-05-28 | Adds prevent stuck modifiers to EZ default | Erez Zukerman | |
2017-05-27 | Fix undefined reference errors with avr-gcc 7.1 | ariasuni | |
2017-05-24 | tweaks default mouse speed constants | Erez Zukerman | |
2017-05-16 | Created a dvorak keymap for Swedish developers using Visual Studio | Christian Westerlund | |
2017-05-11 | Fix spelling of "persistent" | Nikolaus Wittenstein | |
Fixes #1201. | |||
2017-05-07 | Merge pull request #1279 from awpr/master | Erez Zukerman | |
Change to per-key eager debouncing for ErgoDox EZ. | |||
2017-05-06 | Update README for keymap “coderkun_neo2” | coderkun | |
2017-05-06 | Merge tag '0.5.43' into coderkun_neo2 | coderkun | |
2017-05-06 | Fix F-keys on right hand to start on first key | coderkun | |
2017-04-26 | Change to per-key eager debouncing for ErgoDox EZ. | Andrew Pritchard | |
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. | |||
2017-04-19 | Fix LCD SS pin configuration | Fred Sundvik | |
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. |