~ruther/qmk_firmware

c2f4c4e2 — Jack Humbert 7 years ago
update planck settings
a7c61f29 — Jack Humbert 7 years ago
fix up midi stuff w/music mode
d1feb874 — Seebs 7 years ago
Don't "unselect" left-hand rows

"unselecting" left-hand rows is a wasted i2c transaction.

On the left-hand side, the ergodox uses a GPIO expander. It
does *not* change "direction" (input/output) of pins, it just
sets pins high or low.

But all the pins are written at once. There's no way to
change just one pin's value; you send a full byte of all eight
row pins. (Not all of them are in use, but that doesn't matter.)
So every pin is either +V or ground. This is in contrast
with the right-hand side, which is using input mode to make pins
be neutral.

So there's no need to "deselect" the rows on the left side
at all. To select row 0, you set the GPIO register for the
rows to 0xFE. The previous code would then set it back to
0xFF, then set it to 0xFD on the next cycle. But we can just
omit the intervening step, and set it to 0xFD next cycle,
and get the same results.

And yes, I tested that the keyboard still works.

On my system, scan rate as reported by DEBUG_SCAN_RATE goes
from 445 or so to 579 or so, thus, from ~2.24ms to ~1.73ms.

Signed-off-by: seebs <seebs@seebs.net>
6d1b45fb — Balz Guenat 7 years ago
change the ?= assignments to =
2c2e1034 — Balz Guenat 7 years ago
some planck keymap shiftings and include proper-making
7235c938 — Balz Guenat 7 years ago
clean up bananasplit keymap
bb53635f — fauxpark 7 years ago
Trim trailing whitespace
af37bb2f — fauxpark 7 years ago
Fix some of the more obvious typos
4c675a83 — fauxpark 7 years ago
Format keycode tables
7b0356d1 — fauxpark 7 years ago
Convert all headings to Title Case
6eb89ae9 — Nico Hormazábal 7 years ago
New Planck Layout (#2123)

* added own keymap for planck

* Update Readme.md

* Update Readme.md

* Update Readme.md

* Update Readme.md

* Update Readme.md
b781cbf7 — Fredric Silberberg 7 years ago
Turn on prevent stuck modifiers for my keymaps.
a14518bf — Cole Markham 7 years ago
Updated copyright headers and peer review fixes
f74f0ac0 — Cole Markham 7 years ago
Update Meira readme
a9a46adb — Cole Markham 7 years ago
Add support for Meira
c51dfef9 — Scott Wilson 7 years ago
Add support for LFKeyboard products: LFK78, LFK87 and SMK65
8b186233 — Balz Guenat 7 years ago
fix link for grave escape in docs
dc6b341c — Martin Gondermann 7 years ago
Updated readme
155660ff — Martin Gondermann 7 years ago
Updated color for base layer to better match my key caps (Dasher)
6e25220e — Gaëtan Ark 7 years ago
Pointing to the right build URL

The previous URI used to point to the Nyquist keyboard build guide.
Next