aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox
AgeCommit message (Collapse)Author
2017-05-28Adds prevent stuck modifiers to EZ defaultGravatar Erez Zukerman
2017-05-24tweaks default mouse speed constantsGravatar Erez Zukerman
2017-05-16Created a dvorak keymap for Swedish developers using Visual StudioGravatar Christian Westerlund
2017-05-11Fix spelling of "persistent"Gravatar Nikolaus Wittenstein
Fixes #1201.
2017-05-07Merge pull request #1279 from awpr/masterGravatar Erez Zukerman
Change to per-key eager debouncing for ErgoDox EZ.
2017-05-06Update README for keymap “coderkun_neo2”Gravatar coderkun
2017-05-06Merge tag '0.5.43' into coderkun_neo2Gravatar coderkun
2017-05-06Fix F-keys on right hand to start on first keyGravatar coderkun
2017-04-26Change to per-key eager debouncing for ErgoDox EZ.Gravatar 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-19Fix LCD SS pin configurationGravatar 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-18Merge pull request #1235 from siroken3/siroken3Gravatar Jack Humbert
Siroken3
2017-04-14Fix KEYMAP_YORUIAN macroGravatar Thomas Fitzsimmons
Fix the ordering of the arguments to the KEYMAP macro.
2017-04-13Add missing serial_link.h includeGravatar Fred Sundvik
Which fixes a warning when building Ergodox Infinity as a righthand master.
2017-04-13Fix keymap yoruian on InfinityGravatar Fred Sundvik
2017-04-13Fix overflow warning in ordinary keymapGravatar Fred Sundvik
2017-04-13Fix overflow warnings in dvorak_programmerGravatar Fred Sundvik
2017-04-12Merge pull request #1213 from nstickney/masterGravatar Jack Humbert
ErgoDox Familiar layout
2017-04-09Extract Ergodox default visualizer into simple_visualizerGravatar Fred Sundvik
It's good enough if you only want to change the lcd text and color.
2017-04-09Rename led test to led_keyframes and move animation to ErgodoxGravatar Fred Sundvik
2017-04-09Create a file for shared Ergodox Infinity animationsGravatar Fred Sundvik
2017-04-09Combine startup and resume animationsGravatar Fred Sundvik
2017-04-09Fix suspend not disabling backlightGravatar Fred Sundvik
2017-04-09Move the logo drawing keyframe to lcd_keyframesGravatar Fred Sundvik
2017-04-09Move LCD logo to visualizer resourcesGravatar Fred Sundvik
2017-04-09Add automatic flush for the LCD screenGravatar Fred Sundvik
2017-04-09LCD initialization sequence according to the docsGravatar 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-09Yet another try to fix the LCD corruptionGravatar 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-09Move common visualizer keyframes into visualizer_keyframes.hGravatar Fred Sundvik
2017-04-09Remove the need to manually enable the visualizerGravatar Fred Sundvik
2017-04-09Separated backlight and LCD disable/enableGravatar Fred Sundvik
Also moved them to correct places
2017-04-09Move LCD backlight keyframes to its own fileGravatar Fred Sundvik
2017-04-09Move LCD keyframes to its own fileGravatar Fred Sundvik
2017-04-09Tweaks to the Ergodox default visualizerGravatar 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-09Simple layer display on Infinity Ergodox default layoutGravatar Fred Sundvik
2017-04-09Add visualizer for Ergodox defaultGravatar Fred Sundvik
2017-04-09Brightness for Ergodox Infinity emulated LEDsGravatar Fred Sundvik
2017-04-09Emulate Ergodox EZ leds by LCD colorsGravatar Fred Sundvik
2017-04-09Display layer bitmap and keyboard led states on the LCDGravatar Fred Sundvik
2017-04-09CIE 1931 for the LCD backlightGravatar Fred Sundvik
2017-04-09Move CIE1931 and breathing tables to its own fileGravatar Fred Sundvik
2017-04-09Disable LEDs on Infinity ErgodoxGravatar Fred Sundvik
2017-04-09Display QMK logo at startup of Infinity ErgodoxGravatar Fred Sundvik
2017-04-09Add support for blitting to the Infinity LCDGravatar Fred Sundvik
2017-04-09Hopefully finally fix the corrupt LCDGravatar 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-09UGFX is compiled once per keyboard instead of keymapGravatar Fred Sundvik
2017-04-09Remove unneeded makefile includeGravatar Fred Sundvik
2017-04-09Add a keyboard specific visualizerGravatar Fred Sundvik
2017-04-07ErgoDox Familiar layout v1Gravatar Stick
2017-04-03Merge remote-tracking branch 'upstream/master'Gravatar Stick
2017-04-03disables space cadet rolloverGravatar Erez Zukerman