mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-12 06:54:42 +00:00
f82437f08e
* When toggling the key logging on or off, the LEDs will do a little dance. * The keylogger is now optional, but enabled by default. Use `KEYLOGGER_ENABLE=no` on the `make` command line to disable it. * The `TAB`/`ARRW` key was turned into a tap-dance key, allowing one to toggle the **ARROW** layer on by double-tapping, and as such, avoid the need to hold the key. * The `-`/`_` key was turned into a tap-dance key too. * There is now a way to travel time with the keyboard, toggle the feature on by hitting `LEAD t`. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
35 lines
790 B
Makefile
35 lines
790 B
Makefile
BOOTMAGIC_ENABLE=no
|
|
COMMAND_ENABLE=no
|
|
SLEEP_LED_ENABLE=no
|
|
UNICODE_ENABLE=no
|
|
FORCE_NKRO ?= yes
|
|
DEBUG_ENABLE = no
|
|
CONSOLE_ENABLE = no
|
|
TAP_DANCE_ENABLE = yes
|
|
KEYLOGGER_ENABLE ?= yes
|
|
|
|
ifeq (${FORCE_NKRO},yes)
|
|
OPT_DEFS += -DFORCE_NKRO
|
|
endif
|
|
|
|
ifeq (${KEYLOGGER_ENABLE},yes)
|
|
OPT_DEFS += -DKEYLOGGER_ENABLE
|
|
CONSOLE_ENABLE = yes
|
|
endif
|
|
|
|
KEYMAP_VERSION = $(shell \
|
|
if [ -d "${KEYMAP_PATH}/.git" ]; then \
|
|
cd "${KEYMAP_PATH}" && git describe --abbrev=6 --dirty --always --tags --match 'v*' 2>/dev/null; \
|
|
else echo QMK; fi)
|
|
|
|
KEYMAP_BRANCH = $(shell \
|
|
if [ -d "${KEYMAP_PATH}/.git" ]; then \
|
|
cd "${KEYMAP_PATH}"; \
|
|
fi; \
|
|
git rev-parse --abbrev-ref HEAD 2>/dev/null)
|
|
|
|
OPT_DEFS += -DKEYMAP_VERSION=\"$(KEYMAP_VERSION)\\\#$(KEYMAP_BRANCH)\"
|
|
|
|
ifndef QUANTUM_DIR
|
|
include ../../../../Makefile
|
|
endif
|