summaryrefslogtreecommitdiff
path: root/keyboards/ergodox_ez/keymaps/algernon/Makefile
diff options
context:
space:
mode:
authorGergely Nagy <algernon@madhouse-project.org>2016-07-29 12:24:33 +0200
committerGergely Nagy <algernon@madhouse-project.org>2016-07-29 12:24:33 +0200
commitf82437f08eb24c549c8e2ec15d466d6d303f93d8 (patch)
treeb4aa7f07ad699b557f12c9d3c8268d1d94de427e /keyboards/ergodox_ez/keymaps/algernon/Makefile
parent7559edc6e618c7d152b71eac1636a3e63bd3a07d (diff)
ergodox_ez: Upgrade my keymap to v1.4
* 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>
Diffstat (limited to 'keyboards/ergodox_ez/keymaps/algernon/Makefile')
-rw-r--r--keyboards/ergodox_ez/keymaps/algernon/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/keyboards/ergodox_ez/keymaps/algernon/Makefile b/keyboards/ergodox_ez/keymaps/algernon/Makefile
index 005f9750c3..6bf3976b9d 100644
--- a/keyboards/ergodox_ez/keymaps/algernon/Makefile
+++ b/keyboards/ergodox_ez/keymaps/algernon/Makefile
@@ -4,13 +4,19 @@ SLEEP_LED_ENABLE=no
UNICODE_ENABLE=no
FORCE_NKRO ?= yes
DEBUG_ENABLE = no
-CONSOLE_ENABLE = yes
+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; \