Forked from https://github.com/thenyeguy/qmk - thank you to @thenyeguy for the structure and template setup.
Supported Keyboards:
- Ergodox EZ
- Levinson
- Planck
init.sh
for initial setup of repo after cloning. Will run qmk_install.shupdate.sh
will pull upstream changes to QMK. Note: Currently there is no sanity checking for breakages, so run a build to test.qmk
is a util script that is used to interact with this repo. Available subcommands:build
- compiles layout into hex filepush
- flashes firmware to keyboardshow
- displays layout in visualizer
cd qmk_firmware && make clean
- clear stale builds, solves odd bugs
OSM
key has to be tapped withing theTAPPING_TERM
timeout, otherwise it will be ignored. The current timeout is50ms
, since otherwise theTAP_TOG
key becomes useless.
lib/lufa/LUFA/makefile: No such file or directory
- fix with
cd qmk_firmware && make git-submodule
- if that doesn't work,
cd qmk_firmware/lib/lufa && git reset --hard head && cd ../../ && make-gitsubmodule
- fix with