diff options
author | tmk <nobody@nowhere> | 2011-01-02 23:52:13 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-01-02 23:52:13 +0900 |
commit | 2a562a4191a5b9e88731efb5eabd921821f25f7e (patch) | |
tree | 20f5bb311ff99ced3dd8ee2d9430e2fbe8183f7b /hhkb/Makefile | |
parent | 1ed336a06499c1baee2421141d59d115f0ee3c4b (diff) | |
download | qmk_firmware-2a562a4191a5b9e88731efb5eabd921821f25f7e.tar.gz qmk_firmware-2a562a4191a5b9e88731efb5eabd921821f25f7e.zip |
Add PS/2 mouse support to connect TrackPoint Unit.
Change build options: Makefile and config.h. See README.
Diffstat (limited to 'hhkb/Makefile')
-rw-r--r-- | hhkb/Makefile | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/hhkb/Makefile b/hhkb/Makefile index bf5d75ee9f..943785fef8 100644 --- a/hhkb/Makefile +++ b/hhkb/Makefile @@ -39,16 +39,6 @@ # To rebuild project do "make clean" then "make all". #---------------------------------------------------------------------------- -# TODO: use config.h for build options? -VENDOR_ID = 0xFEED -PRODUCT_ID = 0xCAFE -MANUFACTURER = 't.m.k.' -PRODUCT = 'HHKB Mod' -DESCRIPTION = 't.m.k. firmware for HHKB pro' - -MOUSE_DELAY_TIME = 127 -NKRO_ENABLE = true - # Target file name (without extension). TARGET = tmk_hhkb @@ -78,4 +68,11 @@ MCU = at90usb1286 # Teensy++ 2.0 # examples use this variable to calculate timings. Do not add a "UL" here. F_CPU = 16000000 + +# Options +# comment out to disable +USB_NKRO_ENABLE = yes +MOUSEKEY_ENABLE = yes +#PS2_MOUSE_ENABLE = yes + include $(COMMON_DIR)/Makefile.common |