ChibiOS: add support for HID Programmable Buttons (#15787)
* ChibiOS: add support for HID Programmable Buttons Fixes #15596 * Enable SHARED_ENDPOINT when PROGRAMMABLE_BUTTON is enabled The Programmable Button driver expects the shared EP to be enabled. So enforce this invariant.
This commit is contained in:
parent
5b31e97187
commit
f1cd2a5a89
3 changed files with 36 additions and 1 deletions
|
@ -28,6 +28,11 @@ ifeq ($(strip $(EXTRAKEY_ENABLE)), yes)
|
|||
SHARED_EP_ENABLE = yes
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(PROGRAMMABLE_BUTTON_ENABLE)), yes)
|
||||
TMK_COMMON_DEFS += -DPROGRAMMABLE_BUTTON_ENABLE
|
||||
SHARED_EP_ENABLE = yes
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(RAW_ENABLE)), yes)
|
||||
TMK_COMMON_DEFS += -DRAW_ENABLE
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue