summaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox_ez/config.h
AgeCommit message (Collapse)AuthorFilesLines
2019-04-18Set default debounce to 5Florian Didron1-1/+0
2019-04-03RGB Matrix Overhaul (#5372)XScorpion21-1/+0
* RGB Matrix overhaul Breakout of animations to separate files Integration of optimized int based math lib Overhaul of rgb_matrix.c and animations for performance * Updating effect function api for future extensions * Combined the keypresses || keyreleases define checks into a single define so I stop forgetting it where necessary * Moving define RGB_MATRIX_KEYREACTIVE_ENABLED earlier in the include chain
2019-01-27Fix Command feature: use get_mods() instead of keyboard_report->mods (#4955)Konstantin Đorđević1-2/+2
* Remove unnecessary IS_COMMAND definition in clueboard/66/rev4 * Replace keyboard_report->mods with get_mods() in IS_COMMAND definitions * Update docs to use get_mods() instead of keyboard_report->mods * Replace keyboard_report->mods with get_mods() in tmk_core/protocol/usb_hid/test For some reason, this occurrence used KB_LSHIFT and KB_RSHIFT, which don't exist * Replace keyboard_report->mods with get_mods() in Massdrop keyboards (as per @patrickmt)
2018-11-20Adaptive debounce logicMichael Graf1-7/+10
The debounce filtering reports a key/switch change directly, without any extra delay. After that the debounce logic will filter all further changes, until the key/switch reports the same state for the given count of scans. So a perfect switch will get a short debounce period and a bad key will get a much longer debounce period. The result is an adaptive debouncing period for each switch. This value defines how often the same key/switch state has to be detected in successive reads until the next key state can be reported. In other words this value defines the minimum debouncing period for a switch.
2018-09-17Make `PREVENT_STUCK_MODIFIERS` the default (#3107)Joe Wasson1-2/+0
* Remove chording as it is not documented, not used, and needs work. * Make Leader Key an optional feature. * Switch from `PREVENT_STUCK_MODIFIERS` to `STRICT_LAYER_RELEASE` * Remove `#define PREVENT_STUCK_MODIFIERS` from keymaps.
2018-07-09Re-add RGBW code, so RGB Underglow will compileDrashna Jaelre1-2/+2
2018-06-23refactor, non-workingJack Humbert1-2/+0
2018-06-13adds timeout to avr i2cJack Humbert1-0/+2
2018-06-12revert some attempts, update i2cJack Humbert1-3/+2
2018-05-09a quick attemptErez Zukerman1-0/+9
2017-11-27Merge pull request #2047 from seebs/seebs/ergodox_brightnessErez Zukerman1-0/+5
Make brightness easier to change
2017-11-26improve ergodox ez performanceSeebs1-1/+11
With these changes, the ergodox ez goes from 315 scans per second when no keys are pressed (~3.17ms/scan) to 447 (~2.24ms/scan). The changes to the pin read are just condensing the logic, and replacing a lot of conditional operations with a single bitwise inversion. The change to row scanning is more significant, and merits explanation. In general, you can only scan one row of a keyboard at a time, because if you scan two rows, you no longer know which row is pulling a given column down. But in the Ergodox design, this isn't the case; the left hand is controlled by an I2C-based GPIO expander, and the columns and rows are *completely separate* electrically from the columns and rows on the right-hand side. So simply reading rows in parallel offers two significant improvements. One is that we no longer need the 30us delay after each right-hand row, because we're spending more than 30us communicating with the left hand over i2c. Another is that we're no longer wastefully sending i2c messages to the left hand to unselect rows when no rows had actually been selected in the first place. These delays were, between them, coming out to nearly 30% of the time spent in each scan. Signed-off-by: seebs <seebs@seebs.net>
2017-11-23Make brightness easier to changeSeebs1-0/+5
Don't make the #defines unconditional, make them optional so users can override them with per-keymap settings more easily.
2017-11-09disables Shine LED layer indication for nowErez Zukerman1-7/+7
2017-11-06adds indication up to layer 7Erez Zukerman1-0/+9
2017-08-24Creates a layouts/ folder for keymaps shared between keyboards (#1609)Jack Humbert1-0/+109
* include variables and .h files as pp directives * start layout compilation * split ergodoxes up * don't compile all layouts for everything * might seg fault * reset layouts variable * actually reset layouts * include rules.mk instead * remove includes from rules.mk * update variable setting * load visualizer from path * adds some more examples * adds more layouts * more boards added * more boards added * adds documentation for layouts * use lowercase names for LAYOUT_ * add layout.json files for each layout * add community folder, default keymaps for layouts * touch-up default layouts * touch-up layouts, some keyboard rules.mk * update documentation for layouts * fix up serial/i2c switches
2016-07-29Initial structure for Ergodox as subprojectsFred Sundvik1-84/+0
Only the EZ default keymaps compiles at the moment though.
2016-07-04Improves debounceJack Humbert1-8/+2
2016-06-22Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)Jack Humbert1-0/+90
* fixes from tmk's repo * rename keyboard to keyboards