Skip to content

Commit

Permalink
Disable NKRO on V-USB controllers (#9054)
Browse files Browse the repository at this point in the history
* Disable NKRO on V-USB controllers

* not _currently_ supported text

Co-authored-by: Ryan <[email protected]>

Co-authored-by: Ryan <[email protected]>
  • Loading branch information
2 people authored and noroadsleft committed Jul 31, 2020
1 parent 4cde56d commit 47d0c01
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tmk_core/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,12 @@ ifeq ($(strip $(COMMAND_ENABLE)), yes)
endif

ifeq ($(strip $(NKRO_ENABLE)), yes)
TMK_COMMON_DEFS += -DNKRO_ENABLE
SHARED_EP_ENABLE = yes
ifneq ($(PROTOCOL),VUSB)
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

ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
Expand Down

0 comments on commit 47d0c01

Please sign in to comment.