]> git.gir.st - tmk_keyboard.git/blob - hhkb/Makefile
host interface for pjrc
[tmk_keyboard.git] / hhkb / Makefile
1 # Target file name (without extension).
2 TARGET = hhkb
3
4 # Directory common source filess exist
5 COMMON_DIR = ..
6
7 # Directory keyboard dependent files exist
8 TARGET_DIR = .
9
10 # keyboard dependent files
11 TARGET_SRC = tmk.c \
12 keymap.c \
13 matrix.c \
14 led.c
15
16
17 # MCU name, you MUST set this to match the board you are using
18 # type "make clean" after changing this, so all files will be rebuilt
19 #MCU = at90usb162 # Teensy 1.0
20 #MCU = atmega32u4 # Teensy 2.0
21 #MCU = at90usb646 # Teensy++ 1.0
22 MCU = at90usb1286 # Teensy++ 2.0
23
24
25 # Processor frequency.
26 # Normally the first thing your program should do is set the clock prescaler,
27 # so your program will run at the correct speed. You should also set this
28 # variable to same clock speed. The _delay_ms() macro uses this, and many
29 # examples use this variable to calculate timings. Do not add a "UL" here.
30 F_CPU = 16000000
31
32
33 # Build Options
34 # comment out to disable the options.
35 MOUSEKEY_ENABLE = yes # Mouse keys
36 #PS2_MOUSE_ENABLE = yes # PS/2 mouse(TrackPoint) support
37 USB_EXTRA_ENABLE = yes # Enhanced feature for Windows(Audio control and System control)
38 USB_NKRO_ENABLE = yes # USB Nkey Rollover
39
40
41 include $(COMMON_DIR)/Makefile.pjrc
42 include $(COMMON_DIR)/Makefile.common
Imprint / Impressum