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