* adding vial id * Update Vial keymap Replacing key-codes to match latest QMK iteration, some options are moved to .JSON * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * Simplified OLED, cleaned up keymap Simplified OLED, cleaned up keymap * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * Update keyboards/tweetydabird/lotus58/keymaps/vial/keymap.c Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com> * conditional --------- Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
21 lines
540 B
Makefile
21 lines
540 B
Makefile
# Copyright 2022 Markus Knutsson (@TweetyDaBird)
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Needed for VIAL compatability (all are needed)
|
|
VIA_ENABLE = yes
|
|
VIAL_ENABLE = yes
|
|
ENCODER_MAP_ENABLE = yes
|
|
|
|
# Reduce size on atmega32u4
|
|
ifeq ($(strip $(MCU)), atmega32u4)
|
|
TAP_DANCE_ENABLE = no
|
|
QMK_SETTINGS = no
|
|
KEY_OVERRIDE_ENABLE = no
|
|
COMBO_ENABLE = no
|
|
|
|
# Reduce size even more for non-nanoboot bootloaders
|
|
ifneq ($(strip $(BOOTLOADER_SIZE)), 512)
|
|
MAGIC_ENABLE = no
|
|
MOUSEKEY_ENABLE = no
|
|
endif
|
|
endif |