]> git.gir.st - tmk_keyboard.git/blob - ps2_usb/Makefile.vusb
Change layer pram and keymap of HHKB. Fix vusb/host.c.
[tmk_keyboard.git] / ps2_usb / Makefile.vusb
1 #
2 # Makefile for V-USB
3 #
4
5
6 # Target file name (without extension).
7 TARGET = ps2_usb_vusb
8
9 # Directory common source filess exist
10 COMMON_DIR = ..
11
12 # Directory keyboard dependent files exist
13 TARGET_DIR = .
14
15 # keyboard dependent files
16 TARGET_SRC = main_vusb.c \
17 keymap.c \
18 matrix.c \
19 led.c \
20 ps2_usart.c
21
22 CONFIG_H = config_vusb.h
23
24
25 # V-USB debug level: To use ps2_usart.c level must be 0
26 # ps2_usart.c requires USART to receive PS/2 signal.
27 OPT_DEFS = -DDEBUG_LEVEL=0
28
29
30 # MCU name, you MUST set this to match the board you are using
31 # type "make clean" after changing this, so all files will be rebuilt
32 #MCU = at90usb162 # Teensy 1.0
33 #MCU = atmega32u4 # Teensy 2.0
34 #MCU = at90usb646 # Teensy++ 1.0
35 #MCU = at90usb1286 # Teensy++ 2.0
36 MCU = atmega168
37
38
39 # Processor frequency.
40 # Normally the first thing your program should do is set the clock prescaler,
41 # so your program will run at the correct speed. You should also set this
42 # variable to same clock speed. The _delay_ms() macro uses this, and many
43 # examples use this variable to calculate timings. Do not add a "UL" here.
44 F_CPU = 20000000
45
46
47 # Build Options
48 # comment out to disable the options.
49 #
50 MOUSEKEY_ENABLE = yes # Mouse keys
51 USB_EXTRA_ENABLE = yes # Audio control and System control
52 #USB_NKRO_ENABLE = yes # USB Nkey Rollover
53
54
55
56 #---------------- Programming Options --------------------------
57 AVRDUDE = avrdude
58 # Type: avrdude -c ? to get a full listing.
59 AVRDUDE_PROGRAMMER = usbasp
60 AVRDUDE_PORT =
61 AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
62 #AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
63
64 # Uncomment the following if you want avrdude's erase cycle counter.
65 # Note that this counter needs to be initialized first using -Yn,
66 # see avrdude manual.
67 #AVRDUDE_ERASE_COUNTER = -y
68
69 # Uncomment the following if you do /not/ wish a verification to be
70 # performed after programming the device.
71 #AVRDUDE_NO_VERIFY = -V
72
73 # Increase verbosity level. Please use this when submitting bug
74 # reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
75 # to submit bug reports.
76 #AVRDUDE_VERBOSE = -v -v
77
78 #AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
79 AVRDUDE_FLAGS = -p $(MCU) -c $(AVRDUDE_PROGRAMMER)
80 AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
81 AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
82 AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
83
84 PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
85
86
87
88 include $(COMMON_DIR)/Makefile.vusb
89 include $(COMMON_DIR)/Makefile.common
Imprint / Impressum