Age | Commit message (Collapse) | Author |
|
Altgr quick combination and updated readme
|
|
mapping table
|
|
There have been reports of it leaving not enough free memory preventing
the keyboard from working properly.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Add dfu-util to the instructions
|
|
|
|
|
|
|
|
|
|
|
|
fix ergodox ez link
|
|
|
|
|
|
Also simplify the linux instructions
|
|
|
|
|
|
Implement the dynamic macros that are recorded in runtime
|
|
|
|
|
|
/ergodox/ez is a broken link, seems like the ez stuff is at /ergodox
|
|
This reworks how the tap-dance feature works: instead of one global
state, we have a state for each tap-dance key, so we can cancel them
when another tap-dance key is in flight. This fixes #527.
Since we have a state for each key, we can avoid situation where a keyup
would mess with our global state. This fixes #563.
And while here, we also make sure to fire events only once, and this
fixes #574.
There is one breaking change, though: tap-dance debugging support was
removed, because dumping the whole state would increase the firmware
size too much. Any keymap that made use of this, will have to be
updated (but there's no such keymap in the repo).
Also, there's a nice trick used in this rework: we need to iterate
through tap_dance_actions in a few places, to check for timeouts, and so
on. For this, we'd need to know the size of the array. We can't discover
that at compile-time, because tap-dance gets compiled separately. We'd
like to avoid having to terminate the list with a sentinel value,
because that would require updates to all keymaps that use the feature.
So, we keep track of the highest tap-dance code seen so far, and iterate
until that index.
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
|
|
This just fixes the readme link to the ErgoDox EZ directory
|
|
|
|
Some links were still pointing to `/keyboards/ergodox_ez`, while the
directory is `/keyboards/erdogox` now.
Not all references have been updated, and some of the text here and
there may need updating to mention the ErgoDox Infinity too, but that's
out of the scope for this quick fix.
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
|
|
Also move all keyboard customization documentation under the
"Going Beyond the keycodes" heading.
|
|
Fixed a typo in line 738 'void martix_init' to 'void matrix_init'
|
|
Added (simple) Tap Dance example implementation steps.
|
|
Added music recording/playing doc
|
|
Added LEADER_EXTERNS() call to readme.
|
|
|
|
This seems to be needed in most cases.
|
|
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
|
|
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
|
|
add some debugging doc, after i found out how to print debug messages
|
|
Misc. fixes from sethbc
|
|
Added Docker as a simple way to build firmwares
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|