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>
This commit is contained in:
parent
686a9d35ff
commit
3c74edbc69
1 changed files with 6 additions and 2 deletions
|
@ -99,8 +99,12 @@ ifeq ($(strip $(COMMAND_ENABLE)), yes)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(NKRO_ENABLE)), yes)
|
ifeq ($(strip $(NKRO_ENABLE)), yes)
|
||||||
TMK_COMMON_DEFS += -DNKRO_ENABLE
|
ifneq ($(PROTOCOL),VUSB)
|
||||||
SHARED_EP_ENABLE = yes
|
TMK_COMMON_DEFS += -DNKRO_ENABLE
|
||||||
|
SHARED_EP_ENABLE = yes
|
||||||
|
else
|
||||||
|
$(info NKRO is not currently supported on V-USB, and has been disabled.)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
|
ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
|
||||||
|
|
Loading…
Reference in a new issue