diff options
author | Drashna Jaelre <drashna@live.com> | 2020-07-22 13:57:47 -0700 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | 3c74edbc691502228b2d2c4d42d5888311f0ca4c (patch) | |
tree | 2eb771f065654d4ec37376f790a2219b9b5d962f | |
parent | 686a9d35ffe1cf834673be2991d7bf1025423ae6 (diff) | |
download | qmk_firmware-3c74edbc691502228b2d2c4d42d5888311f0ca4c.tar.gz qmk_firmware-3c74edbc691502228b2d2c4d42d5888311f0ca4c.zip |
Disable NKRO on V-USB controllers (#9054)
* Disable NKRO on V-USB controllers
* not _currently_ supported text
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r-- | tmk_core/common.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk index b7fe45afd..56ed4a857 100644 --- a/tmk_core/common.mk +++ b/tmk_core/common.mk | |||
@@ -99,8 +99,12 @@ ifeq ($(strip $(COMMAND_ENABLE)), yes) | |||
99 | endif | 99 | endif |
100 | 100 | ||
101 | ifeq ($(strip $(NKRO_ENABLE)), yes) | 101 | ifeq ($(strip $(NKRO_ENABLE)), yes) |
102 | TMK_COMMON_DEFS += -DNKRO_ENABLE | 102 | ifneq ($(PROTOCOL),VUSB) |
103 | SHARED_EP_ENABLE = yes | 103 | TMK_COMMON_DEFS += -DNKRO_ENABLE |
104 | SHARED_EP_ENABLE = yes | ||
105 | else | ||
106 | $(info NKRO is not currently supported on V-USB, and has been disabled.) | ||
107 | endif | ||
104 | endif | 108 | endif |
105 | 109 | ||
106 | ifeq ($(strip $(USB_6KRO_ENABLE)), yes) | 110 | ifeq ($(strip $(USB_6KRO_ENABLE)), yes) |