No description
Find a file
Seebs 7fbe6c3594 improve ergodox ez performance
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-26 02:07:06 -05:00
.vscode
docs Update config_options.md 2017-11-21 21:26:29 -05:00
drivers
keyboards improve ergodox ez performance 2017-11-26 02:07:06 -05:00
layouts
lib update chibios 2017-11-17 11:40:13 -05:00
quantum adds planck light keyboard 2017-11-20 23:37:38 -05:00
tests
tmk_core I found a typo! 2017-11-22 11:40:46 -05:00
users Update to drashna keymaps (#4) 2017-11-17 20:48:26 -05:00
util adds planck light keyboard 2017-11-20 23:37:38 -05:00
.editorconfig
.gitattributes
.gitignore
.gitmodules Update .gitmodules 2017-11-16 15:09:45 -05:00
.travis.yml
autocomplete.sh
book.json
build_full_test.mk
build_keyboard.mk
build_layout.mk
build_test.mk
CODE_OF_CONDUCT.md
common.mk
common_features.mk
Dockerfile
lcd_backlight_keyframes.h
LICENSE
license_GPLv2.md
license_GPLv3.md
license_Modified_BSD.md
Makefile update version silencing 2017-11-14 22:56:29 -05:00
message.mk
readme.md
secrets.tar.enc
shell.nix
testlist.mk
Vagrantfile

Quantum Mechanical Keyboard Firmware

Current Version Build Status Gitter Docs Status GitHub contributors GitHub forks

This is a keyboard firmware based on the tmk_keyboard firmware with some useful features for Atmel AVR and ARM controllers, and more specifically, the OLKB product line, the ErgoDox EZ keyboard, and the Clueboard product line.

Official website

http://qmk.fm is the official website of QMK, where you can find links to this page, the documentation, and the keyboards supported by QMK.

Supported Keyboards

The project also includes community support for lots of other keyboards.

Maintainers

QMK is developed and maintained by Jack Humbert of OLKB with contributions from the community, and of course, Hasu. The OLKB product firmwares are maintained by Jack Humbert, the Ergodox EZ by Erez Zukerman, and the Clueboard by Zach White.

Documentation

https://docs.qmk.fm is hosted on Gitbook and GitHub (they are synced). You can request changes by making a fork and pull request, or by clicking the "suggest an edit" link on any page of the Docs.