diff options
author | Gergely Nagy <algernon@madhouse-project.org> | 2016-08-12 16:36:07 +0200 |
---|---|---|
committer | Gergely Nagy <algernon@madhouse-project.org> | 2016-08-12 16:36:07 +0200 |
commit | b98d47abe544c68ffba745b6643a777f8f61a03c (patch) | |
tree | 9cb2d67dff8938913120f50c7dca84307457b74e /keyboards/ergodox/keymaps/algernon/Makefile | |
parent | 97cd7afc3272efb4fecf5ff85548cbeabe683431 (diff) | |
download | qmk_firmware-b98d47abe544c68ffba745b6643a777f8f61a03c.tar.gz qmk_firmware-b98d47abe544c68ffba745b6643a777f8f61a03c.zip |
ergodox: Update my keymap to v1.5
Major changes include:
* The **1HAND** layer has been removed.
* A `Delete` key is now available on the right thumb cluster.
* The **ADORE** layer received a major update, see the updated layout
image.
* It is now possible to enable automatic logging for the **ADORE**
layer, by setting the `ADORE_AUTOLOG` makefile variable to `yes` when
compiling the keymap. It is off by default.
* The `~` key and the `Media Next/Prev` key have been swapped on
the **base** layer.
* On the **ARROW** layer, `Backspace` has been replaced by `Enter`.
* There is some experimental support for entering Unicode symbols.
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
Diffstat (limited to 'keyboards/ergodox/keymaps/algernon/Makefile')
-rw-r--r-- | keyboards/ergodox/keymaps/algernon/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/keyboards/ergodox/keymaps/algernon/Makefile b/keyboards/ergodox/keymaps/algernon/Makefile index 6bf3976b9d..00194857ac 100644 --- a/keyboards/ergodox/keymaps/algernon/Makefile +++ b/keyboards/ergodox/keymaps/algernon/Makefile @@ -8,10 +8,17 @@ CONSOLE_ENABLE = no TAP_DANCE_ENABLE = yes KEYLOGGER_ENABLE ?= yes +ADORE_AUTOLOG ?= no + ifeq (${FORCE_NKRO},yes) OPT_DEFS += -DFORCE_NKRO endif +ifeq (${ADORE_AUTOLOG},yes) +KEYLOGGER_ENABLE = yes +OPT_DEFS += -DADORE_AUTOLOG +endif + ifeq (${KEYLOGGER_ENABLE},yes) OPT_DEFS += -DKEYLOGGER_ENABLE CONSOLE_ENABLE = yes |