Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2017-04-18 | Merge pull request #1235 from siroken3/siroken3 | Jack Humbert | |
Siroken3 | |||
2017-04-18 | small changes | Stick | |
2017-04-14 | Fix KEYMAP_YORUIAN macro | Thomas Fitzsimmons | |
Fix the ordering of the arguments to the KEYMAP macro. | |||
2017-04-13 | Add missing serial_link.h include | Fred Sundvik | |
Which fixes a warning when building Ergodox Infinity as a righthand master. | |||
2017-04-13 | Fix keymap yoruian on Infinity | Fred Sundvik | |
2017-04-13 | Fix overflow warning in ordinary keymap | Fred Sundvik | |
2017-04-13 | Fix overflow warnings in dvorak_programmer | Fred Sundvik | |
2017-04-12 | Merge pull request #1213 from nstickney/master | Jack Humbert | |
ErgoDox Familiar layout | |||
2017-04-09 | Extract Ergodox default visualizer into simple_visualizer | Fred Sundvik | |
It's good enough if you only want to change the lcd text and color. | |||
2017-04-09 | Rename led test to led_keyframes and move animation to Ergodox | Fred Sundvik | |
2017-04-09 | Create a file for shared Ergodox Infinity animations | Fred Sundvik | |
2017-04-09 | Combine startup and resume animations | Fred Sundvik | |
2017-04-09 | Fix suspend not disabling backlight | Fred Sundvik | |
2017-04-09 | Move the logo drawing keyframe to lcd_keyframes | Fred Sundvik | |
2017-04-09 | Move LCD logo to visualizer resources | Fred Sundvik | |
2017-04-09 | Add automatic flush for the LCD screen | Fred Sundvik | |
2017-04-09 | LCD initialization sequence according to the docs | Fred Sundvik | |
The LCD initialization show now be much better and faster with no flickering at the startup. Also fix the contrast control. | |||
2017-04-09 | Yet another try to fix the LCD corruption | Fred Sundvik | |
It turns out that the ChibiOS K20 SPI driver doesn't handle the chip select, so it needs to be done manually. Acquiring the bus is not enough since the pin was in the wrong mode. This is now fixed. Also increase the frequency of the SPI from around 200kHz to nearly 20 Mhz. | |||
2017-04-09 | Move common visualizer keyframes into visualizer_keyframes.h | Fred Sundvik | |
2017-04-09 | Remove the need to manually enable the visualizer | Fred Sundvik | |
2017-04-09 | Separated backlight and LCD disable/enable | Fred Sundvik | |
Also moved them to correct places | |||
2017-04-09 | Move LCD backlight keyframes to its own file | Fred Sundvik | |
2017-04-09 | Move LCD keyframes to its own file | Fred Sundvik | |
2017-04-09 | Tweaks to the Ergodox default visualizer | Fred Sundvik | |
No animation, display led statuses and layer name on the same screen Don't display layer bitmap Fully saturated colors for caps, less saturated ones normally | |||
2017-04-09 | Simple layer display on Infinity Ergodox default layout | Fred Sundvik | |
2017-04-09 | Add visualizer for Ergodox default | Fred Sundvik | |
2017-04-09 | Brightness for Ergodox Infinity emulated LEDs | Fred Sundvik | |
2017-04-09 | Emulate Ergodox EZ leds by LCD colors | Fred Sundvik | |
2017-04-09 | Display layer bitmap and keyboard led states on the LCD | Fred Sundvik | |
2017-04-09 | CIE 1931 for the LCD backlight | Fred Sundvik | |
2017-04-09 | Move CIE1931 and breathing tables to its own file | Fred Sundvik | |
2017-04-09 | Disable LEDs on Infinity Ergodox | Fred Sundvik | |
2017-04-09 | Display QMK logo at startup of Infinity Ergodox | Fred Sundvik | |
2017-04-09 | Add support for blitting to the Infinity LCD | Fred Sundvik | |
2017-04-09 | Hopefully finally fix the corrupt LCD | Fred Sundvik | |
The SPI bus is now selected and deselected before each set of commands. Also speed up things by buffering many commands into a single batch. | |||
2017-04-09 | UGFX is compiled once per keyboard instead of keymap | Fred Sundvik | |
2017-04-09 | Remove unneeded makefile include | Fred Sundvik | |
2017-04-09 | Add a keyboard specific visualizer | Fred Sundvik | |
2017-04-07 | ErgoDox Familiar layout v1 | Stick | |
2017-04-03 | Merge remote-tracking branch 'upstream/master' | Stick | |
2017-04-03 | disables space cadet rollover | Erez Zukerman | |
2017-04-02 | Merge remote-tracking branch 'upstream/master' | Xyverz | |
2017-04-01 | Fix keymap “coderkun_neo” to use LALT instead of RALT | coderkun | |