Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove .hex, .PNG, .jpg | Jack Humbert | 2017-06-11 | 7 | -4/+4 |
| | |||||
* | remove the rest of the .pngs | Jack Humbert | 2017-06-11 | 36 | -24/+29 |
| | |||||
* | remove most .pngs | Jack Humbert | 2017-06-11 | 87 | -2327/+51 |
| | |||||
* | Ergodox Adam keymap | Adam Bell | 2017-06-03 | 4 | -1/+183 |
| | |||||
* | Update licensing on visualizer.c | Fredric Silberberg | 2017-05-31 | 1 | -14/+1 |
| | |||||
* | Updated readme | Fredric Silberberg | 2017-05-31 | 2 | -7/+13 |
| | |||||
* | Added several new macros | Fredric Silberberg | 2017-05-31 | 1 | -19/+63 |
| | |||||
* | Fixed numpad 0 layout | Fredric Silberberg | 2017-05-31 | 2 | -3/+3 |
| | |||||
* | Use code blocks for keyboard layouts | Fredric Silberberg | 2017-05-30 | 1 | -3/+13 |
| | |||||
* | Completed iteration 1 of my layout | Fredric Silberberg | 2017-05-30 | 4 | -98/+306 |
| | |||||
* | Added initial keymap files | Fredric Silberberg | 2017-05-30 | 3 | -0/+273 |
| | |||||
* | Adds prevent stuck modifiers to EZ default | Erez Zukerman | 2017-05-28 | 2 | -1/+3 |
| | |||||
* | tweaks default mouse speed constants | Erez Zukerman | 2017-05-24 | 1 | -2/+2 |
| | |||||
* | Created a dvorak keymap for Swedish developers using Visual Studio | Christian Westerlund | 2017-05-16 | 2 | -0/+359 |
| | |||||
* | Fix spelling of "persistent" | Nikolaus Wittenstein | 2017-05-11 | 1 | -4/+4 |
| | | | | Fixes #1201. | ||||
* | Merge pull request #1279 from awpr/master | Erez Zukerman | 2017-05-07 | 2 | -26/+38 |
|\ | | | | | Change to per-key eager debouncing for ErgoDox EZ. | ||||
| * | Change to per-key eager debouncing for ErgoDox EZ. | Andrew Pritchard | 2017-04-26 | 2 | -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” | coderkun | 2017-05-06 | 1 | -9/+2 |
| | | |||||
* | | Merge tag '0.5.43' into coderkun_neo2 | coderkun | 2017-05-06 | 34 | -371/+1582 |
|\| | |||||
| * | Fix LCD SS pin configuration | Fred Sundvik | 2017-04-19 | 1 | -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/siroken3 | Jack Humbert | 2017-04-18 | 5 | -0/+202 |
| |\ | | | | | | | Siroken3 | ||||
| | * | fix backspace key position. | Kenichi Sasaki | 2017-03-05 | 1 | -2/+2 |
| | | | |||||
| | * | fix again | Kenichi Sasaki | 2017-03-04 | 1 | -98/+55 |
| | | | |||||
| | * | change bracket key posision | Kenichi Sasaki | 2017-02-19 | 1 | -14/+14 |
| | | | |||||
| | * | fix | Kenichi Sasaki | 2017-02-18 | 1 | -2/+2 |
| | | | |||||
| | * | remove reset key | Kenichi Sasaki | 2017-02-18 | 1 | -4/+3 |
| | | | |||||
| | * | Added JIS keymap symbols | Kenichi Sasaki | 2017-02-18 | 1 | -17/+25 |
| | | | |||||
| | * | copied and Meta(ESC) | Kenichi Sasaki | 2017-02-18 | 5 | -0/+238 |
| | | | |||||
| * | | Fix KEYMAP_YORUIAN macro | Thomas Fitzsimmons | 2017-04-14 | 1 | -19/+26 |
| | | | | | | | | | | | | Fix the ordering of the arguments to the KEYMAP macro. | ||||
| * | | Add missing serial_link.h include | Fred Sundvik | 2017-04-13 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | Which fixes a warning when building Ergodox Infinity as a righthand master. | ||||
| * | | Fix keymap yoruian on Infinity | Fred Sundvik | 2017-04-13 | 2 | -23/+12 |
| | | | |||||
| * | | Fix overflow warning in ordinary keymap | Fred Sundvik | 2017-04-13 | 1 | -1/+1 |
| | | | |||||
| * | | Fix overflow warnings in dvorak_programmer | Fred Sundvik | 2017-04-13 | 1 | -3/+3 |
| | | | |||||
| * | | Merge pull request #1213 from nstickney/master | Jack Humbert | 2017-04-12 | 4 | -1/+337 |
| |\ \ | | | | | | | | | ErgoDox Familiar layout | ||||
| | * | | ErgoDox Familiar layout v1 | Stick | 2017-04-07 | 9 | -23478/+69 |
| | | | | |||||
| | * | | Merge remote-tracking branch 'upstream/master' | Stick | 2017-04-03 | 6 | -15/+326 |
| | |\ \ | |||||
| | * | | | unsatisfied with ESC/GRV/TAB positioning | Stick | 2017-03-27 | 1 | -16/+16 |
| | | | | | |||||
| | * | | | Merge remote-tracking branch 'upstream/master' | Stick | 2017-03-27 | 8 | -21/+74 |
| | |\ \ \ | |||||
| | * | | | | fixed unicode input issue | Stick | 2017-03-27 | 2 | -18/+18 |
| | | | | | | |||||
| | * | | | | added README.md | nstickney | 2017-03-12 | 1 | -0/+3 |
| | | | | | | |||||
| | * | | | | Merge remote-tracking branch 'upstream/master' | nstickney | 2017-03-12 | 2 | -0/+602 |
| | |\ \ \ \ | |||||
| | * | | | | | added US-International support | nstickney | 2017-03-12 | 2 | -53/+104 |
| | | | | | | | |||||
| | * | | | | | Merge remote-tracking branch 'upstream/master' | nstickney | 2017-03-08 | 6 | -2/+560 |
| | |\ \ \ \ \ | |||||
| | * | | | | | | found LT(layer, kc) so I could take out TapDance code | nstickney | 2017-03-08 | 2 | -112/+20 |
| | | | | | | | | |||||
| | * | | | | | | corralled image files | nstickney | 2017-03-08 | 8 | -13/+13 |
| | | | | | | | | |||||
| | * | | | | | | SLASH and WHACK functions added (based on algernon's CT_TA) | nstickney | 2017-03-07 | 1 | -37/+0 |
| | | | | | | | | |||||
| | * | | | | | | SLASH and WHACK functions added (based on algernon's CT_TA) | nstickney | 2017-03-07 | 4 | -33/+157 |
| | | | | | | | | |||||
| | * | | | | | | Merge remote-tracking branch 'upstream/master' | nstickney | 2017-03-07 | 5 | -0/+280 |
| | |\ \ \ \ \ \ | |||||
| | * | | | | | | | making numbers more familiar | nstickney | 2017-02-25 | 1 | -93/+131 |
| | | | | | | | | | |||||
| | * | | | | | | | first two layers of ErgoDox Familiar completeC | nstickney | 2017-02-24 | 1 | -13/+55 |
| | | | | | | | | |