aboutsummaryrefslogtreecommitdiff
path: root/keyboard/gh60
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-03-27 15:21:16 +0900
committertmk <nobody@nowhere>2013-03-27 15:21:16 +0900
commitf57a44261ebf42b3c1b8e336230a8b40c61a13de (patch)
tree4be93f4f5aa839bfca497a3edf59c7ffaafb3b9b /keyboard/gh60
parentafc3148e2341e4be982cdb628543e30923cfdaf7 (diff)
downloadqmk_firmware-f57a44261ebf42b3c1b8e336230a8b40c61a13de.tar.gz
qmk_firmware-f57a44261ebf42b3c1b8e336230a8b40c61a13de.zip
Fix Makefile of gh60
Diffstat (limited to 'keyboard/gh60')
-rw-r--r--keyboard/gh60/Makefile.lufa9
-rw-r--r--keyboard/gh60/Makefile.pjrc3
2 files changed, 11 insertions, 1 deletions
diff --git a/keyboard/gh60/Makefile.lufa b/keyboard/gh60/Makefile.lufa
index f153bc311..278f966de 100644
--- a/keyboard/gh60/Makefile.lufa
+++ b/keyboard/gh60/Makefile.lufa
@@ -48,7 +48,7 @@ TOP_DIR = ../..
48TARGET_DIR = . 48TARGET_DIR = .
49 49
50# project specific files 50# project specific files
51SRC += keymap.c \ 51SRC = keymap.c \
52 matrix.c \ 52 matrix.c \
53 led.c 53 led.c
54 54
@@ -96,6 +96,13 @@ F_USB = $(F_CPU)
96#OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT 96#OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
97 97
98 98
99# Boot Section Size in bytes
100# Teensy halfKay 512
101# Atmel DFU loader 4096
102# LUFA bootloader 4096
103OPT_DEFS += -DBOOT_SIZE=4096
104
105
99# Build Options 106# Build Options
100# comment out to disable the options. 107# comment out to disable the options.
101# 108#
diff --git a/keyboard/gh60/Makefile.pjrc b/keyboard/gh60/Makefile.pjrc
index 290f7cb87..c12334fca 100644
--- a/keyboard/gh60/Makefile.pjrc
+++ b/keyboard/gh60/Makefile.pjrc
@@ -68,12 +68,14 @@ MCU = atmega32u4
68# examples use this variable to calculate timings. Do not add a "UL" here. 68# examples use this variable to calculate timings. Do not add a "UL" here.
69F_CPU = 16000000 69F_CPU = 16000000
70 70
71
71# Boot Section Size in bytes 72# Boot Section Size in bytes
72# Teensy halfKay 512 73# Teensy halfKay 512
73# Atmel DFU loader 4096 74# Atmel DFU loader 4096
74# LUFA bootloader 4096 75# LUFA bootloader 4096
75OPT_DEFS += -DBOOT_SIZE=4096 76OPT_DEFS += -DBOOT_SIZE=4096
76 77
78
77# Build Options 79# Build Options
78# comment out to disable the options. 80# comment out to disable the options.
79# 81#
@@ -82,6 +84,7 @@ MOUSEKEY_ENABLE = yes # Mouse keys(+5000)
82EXTRAKEY_ENABLE = yes # Audio control and System control(+600) 84EXTRAKEY_ENABLE = yes # Audio control and System control(+600)
83CONSOLE_ENABLE = yes # Console for debug 85CONSOLE_ENABLE = yes # Console for debug
84COMMAND_ENABLE = yes # Commands for debug and configuration 86COMMAND_ENABLE = yes # Commands for debug and configuration
87SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
85NKRO_ENABLE = yes # USB Nkey Rollover(+500) 88NKRO_ENABLE = yes # USB Nkey Rollover(+500)
86#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support 89#PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
87 90