diff options
author | 2015-04-26 08:08:54 +0200 | |
---|---|---|
committer | 2015-04-26 08:57:00 +0200 | |
commit | 7780fd1c01182ab67d899b78d85a0d3b0d89196f (patch) | |
tree | fb416f095da28041879d2e85cf5d127bdd3957af /tmk_core/protocol/pjrc.mk | |
parent | 55fc97f957555c20c4509e587e8fd2ef1194ab0d (diff) | |
download | qmk_firmware-7780fd1c01182ab67d899b78d85a0d3b0d89196f.tar.gz |
Add mouse support to ADB
Adding the makefile options ADB_MOUSE_ENABLE and ADB_MOUSE_ACCMAX.
Might have gone overboard with comments, and tried but failed at not
adding more than necessary outside the converter/adb_usb/ folder.
Diffstat (limited to 'tmk_core/protocol/pjrc.mk')
-rw-r--r-- | tmk_core/protocol/pjrc.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/protocol/pjrc.mk b/tmk_core/protocol/pjrc.mk index 36585de7d..2b1ba2cbf 100644 --- a/tmk_core/protocol/pjrc.mk +++ b/tmk_core/protocol/pjrc.mk @@ -11,6 +11,10 @@ ifdef MOUSEKEY_ENABLE SRC += $(PJRC_DIR)/usb_mouse.c endif +ifdef ADB_MOUSE_ENABLE + SRC += $(PJRC_DIR)/usb_mouse.c +endif + ifdef PS2_MOUSE_ENABLE SRC += $(PJRC_DIR)/usb_mouse.c endif |