Commit Graph

80 Commits (ead68248c553db5efcb0e2069f94849b8de190d8)

Author SHA1 Message Date
cbbrowne 95a160bf92 Improve docs on memory usage
cbbrowne b787ed9dc6 More notes on .hex size protection
Jack Humbert 6e0f994950 Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7
Priyadi Iman Nurcahyo a182cbc031 Update Unicode documentation
Priyadi Iman Nurcahyo f837406ace A few addition to PS2 documentation.
ofples 97e7486d4c Added documentation for PS/2 mouse in readme
Jack Humbert 27ebacb15d merging lets_split
Jack Humbert 3774a7fcda rgb light through midi
IBNobody 1803dbc6d5 Merge remote-tracking branch 'refs/remotes/jackhumbert/master'
Fred Sundvik 0ba3e523a7 Add documentation for the variable tracing
IBNobody 9e6c57af2a Merge remote-tracking branch 'refs/remotes/jackhumbert/master'
Sergey Lebedev 552f469dfc Add link to article about Unicode Hex Input in readme
For me it wasn't clear what is `Unicode Hex Input`, that article
  clarifies it (at least for me).
IBNobody a0fdb6b81a Merge remote-tracking branch 'refs/remotes/jackhumbert/master'
IBNobody 17170ba76d Fixed some large keyboard bugs
Fixed some bugs relating to keyboards with more than 16 columns. Also
added the ability to mask off keyboard matrix bits.
Priyadi Iman Nurcahyo e7d5dc89f2 UNICODE_MAP: remove 5 char limit; ignore leading zeroes; handle OS limitations
Jack Humbert 52d7f7d277 Merge pull request from priyadi/unicode_map
Allow unicode up to 0xFFFFF using separate mapping table
Jack & Erez e27a754b70 [Jack & Erez] Simplifies and documents TO
Jack Humbert aa8aa6af75 Merge pull request from npoirey/master
Altgr quick combination and updated readme
Priyadi Iman Nurcahyo 5b2e455d3b Unicode map framework. Allow unicode up to 0xFFFFF using separate
mapping table
Wojciech Siewierski 70f32842e5 Reduce the default dynamic macro buffer
There have been reports of it leaving not enough free memory preventing
the keyboard from working properly.
npoirey 628a48c788 Updated Readme to help windows users use docker for build
Pavlos Vinieratos 0edc82f030 formatting
IBNobody bbf06d516a Added notes on vagrant file fixes, UPRINT
Peter Ondrejka 08c177f00b fixed typo in Linux install instructions
IBNobody d55a705bbb Moved breathing backlighting section in readme.md
IBNobody f065652812 Updated doc to contain breathing information.
IBNobody 7fd5b6581a Updated readme to have better backlight breathing info.
Jack Humbert bade8be66c Merge pull request from fredizzimo/dfu-util_instructions
Add dfu-util to the instructions
Fred Sundvik 53302328d0 Add dfu-util to the instructions
Fred Sundvik 922c4ea3bc Add unit test documentation
Fred Sundvik d1e4f2eb08 Merge remote-tracking branch 'upstream/master' into makefile_overhaul
Fred Sundvik 86ece64176 Fix minor typo in the readme
Fred Sundvik 523dff3005 Merge branch 'master' into makefile_overhaul
Jack Humbert d2990645ca Merge pull request from nclundsten/master
fix ergodox ez link
Fred Sundvik 8f2af3c6bc Merge branch 'master' into makefile_overhaul
Fred Sundvik 2a5bdd81d4 Add warning about line endings
Fred Sundvik 704cbd1d2b Add instructions for Windows 10 subsystem for Linux
Also simplify the linux instructions
Fred Sundvik b4c75569b0 Update readme with new instructions for make
Wojciech Siewierski ea7115534a Improve the dynamic macro documentation
Jack Humbert 8144ce8852 Merge pull request from Vifon/dynamic_macros
Implement the dynamic macros that are recorded in runtime
Wojciech Siewierski 950755edaf Add the dynamic macros documentation to the readme
Nigel Lundsten 3e1d142018 trailing slash
Nigel Lundsten 6bafafc18d fix ergodox link (again?)
/ergodox/ez  is a broken link, seems like the ez stuff is at /ergodox
Gergely Nagy 29f64d7a93 tap-dance: Major rework, to make it more reliable
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 .

Since we have a state for each key, we can avoid situation where a keyup
would mess with our global state. This fixes .

And while here, we also make sure to fire events only once, and this
fixes .

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>
Aaron Patterson 477f1ad0c8
fix link to ErgoDox EZ
This just fixes the readme link to the ErgoDox EZ directory
Fred Sundvik 87a1a095d0 Fix the readme for the removed quick target
Gergely Nagy 8a9bf1f165 Update some obsolete references
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>
Fred Sundvik 7d55951050 Fix the quick aliases documentation section
Also move all keyboard customization documentation under the
"Going Beyond the keycodes" heading.
Matthias e8f7038959 Fixed a typo
Fixed a typo in line 738 'void martix_init' to 'void matrix_init'
Michael Klos 7e69de061a Added Tap Dance Example
Added (simple) Tap Dance example implementation steps.