diff options
author | tmk <nobody@nowhere> | 2011-01-05 00:04:25 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-01-05 00:19:43 +0900 |
commit | 6b0c939d72c11e404f84c926cf82f9501f8511ff (patch) | |
tree | 9df22c1991b8b293442b2f12fac08e910dc49d58 /macway | |
parent | 7272c65d3d24187487e7d38e332401002f5f233b (diff) |
add a build option: USB_EXTRA_ENABLE
Diffstat (limited to 'macway')
-rw-r--r-- | macway/Makefile | 13 | ||||
-rw-r--r-- | macway/config.h | 2 |
2 files changed, 9 insertions, 6 deletions
diff --git a/macway/Makefile b/macway/Makefile index fffe1ad544..49dba6746a 100644 --- a/macway/Makefile +++ b/macway/Makefile @@ -69,10 +69,13 @@ MCU = atmega32u4 # Teensy 2.0 F_CPU = 16000000 -# Options -# comment out to disable -#USB_NKRO_ENABLE = yes -MOUSEKEY_ENABLE = yes -PS2_MOUSE_ENABLE = yes +# Build Options +# comment out to disable the options. +# +MOUSEKEY_ENABLE = yes # Mouse keys +PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support +USB_EXTRA_ENABLE = yes # Enhanced feature for Windows(Audio control and System control) +#USB_NKRO_ENABLE = yes # USB Nkey Rollover + include $(COMMON_DIR)/Makefile.common diff --git a/macway/config.h b/macway/config.h index de9fc78b10..41bdc33de0 100644 --- a/macway/config.h +++ b/macway/config.h @@ -2,7 +2,7 @@ #define CONFIG_H #define VENDOR_ID 0xFEED -#define PRODUCT_ID 0xBEEF +#define PRODUCT_ID 0xBEE0 #define MANUFACTURER t.m.k. #define PRODUCT Macway mod #define DESCRIPTION t.m.k. keyboard firmware for Macway mod |