summaryrefslogtreecommitdiff
path: root/keyboards/ergodox
AgeCommit message (Collapse)Author
2017-06-11remove the rest of the .pngsJack Humbert
2017-06-11remove most .pngsJack Humbert
2017-06-03Ergodox Adam keymapAdam Bell
2017-05-31Update licensing on visualizer.cFredric Silberberg
2017-05-31Updated readmeFredric Silberberg
2017-05-31Added several new macrosFredric Silberberg
2017-05-31Fixed numpad 0 layoutFredric Silberberg
2017-05-30Use code blocks for keyboard layoutsFredric Silberberg
2017-05-30Completed iteration 1 of my layoutFredric Silberberg
2017-05-30Added initial keymap filesFredric Silberberg
2017-05-28Adds prevent stuck modifiers to EZ defaultErez Zukerman
2017-05-24tweaks default mouse speed constantsErez Zukerman
2017-05-16Created a dvorak keymap for Swedish developers using Visual StudioChristian Westerlund
2017-05-11Fix spelling of "persistent"Nikolaus Wittenstein
Fixes #1201.
2017-05-07Merge pull request #1279 from awpr/masterErez Zukerman
Change to per-key eager debouncing for ErgoDox EZ.
2017-05-06Update README for keymap “coderkun_neo2”coderkun
2017-05-06Merge tag '0.5.43' into coderkun_neo2coderkun
2017-05-06Fix F-keys on right hand to start on first keycoderkun
2017-04-26Change 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-19Fix LCD SS pin configurationFred 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/siroken3Jack Humbert
Siroken3
2017-04-14Fix KEYMAP_YORUIAN macroThomas Fitzsimmons
Fix the ordering of the arguments to the KEYMAP macro.
2017-04-13Add missing serial_link.h includeFred Sundvik
Which fixes a warning when building Ergodox Infinity as a righthand master.
2017-04-13Fix keymap yoruian on InfinityFred Sundvik
2017-04-13Fix overflow warning in ordinary keymapFred Sundvik
2017-04-13Fix overflow warnings in dvorak_programmerFred Sundvik
2017-04-12Merge pull request #1213 from nstickney/masterJack Humbert
ErgoDox Familiar layout
2017-04-09Extract Ergodox default visualizer into simple_visualizerFred 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 ErgodoxFred Sundvik
2017-04-09Create a file for shared Ergodox Infinity animationsFred Sundvik
2017-04-09Combine startup and resume animationsFred Sundvik
2017-04-09Fix suspend not disabling backlightFred Sundvik
2017-04-09Move the logo drawing keyframe to lcd_keyframesFred Sundvik
2017-04-09Move LCD logo to visualizer resourcesFred Sundvik
2017-04-09Add automatic flush for the LCD screenFred Sundvik
2017-04-09LCD initialization sequence according to the docsFred 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 corruptionFred 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.hFred Sundvik
2017-04-09Remove the need to manually enable the visualizerFred Sundvik
2017-04-09Separated backlight and LCD disable/enableFred Sundvik
Also moved them to correct places
2017-04-09Move LCD backlight keyframes to its own fileFred Sundvik
2017-04-09Move LCD keyframes to its own fileFred Sundvik
2017-04-09Tweaks to the Ergodox default visualizerFred 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 layoutFred Sundvik
2017-04-09Add visualizer for Ergodox defaultFred Sundvik
2017-04-09Brightness for Ergodox Infinity emulated LEDsFred Sundvik
2017-04-09Emulate Ergodox EZ leds by LCD colorsFred Sundvik
2017-04-09Display layer bitmap and keyboard led states on the LCDFred Sundvik
2017-04-09CIE 1931 for the LCD backlightFred Sundvik
2017-04-09Move CIE1931 and breathing tables to its own fileFred Sundvik