6 # Target file name (without extension).
9 # Directory common source filess exist
12 # Directory keyboard dependent files exist
15 # keyboard dependent files
21 CONFIG_H = config_vusb.h
24 # V-USB debug level: To use ps2_usart.c level must be 0
25 # ps2_usart.c requires USART to receive PS/2 signal.
26 OPT_DEFS = -DDEBUG_LEVEL=0
29 # MCU name, you MUST set this to match the board you are using
30 # type "make clean" after changing this, so all files will be rebuilt
31 #MCU = at90usb162 # Teensy 1.0
32 #MCU = atmega32u4 # Teensy 2.0
33 #MCU = at90usb646 # Teensy++ 1.0
34 #MCU = at90usb1286 # Teensy++ 2.0
38 # Processor frequency.
39 # Normally the first thing your program should do is set the clock prescaler,
40 # so your program will run at the correct speed. You should also set this
41 # variable to same clock speed. The _delay_ms() macro uses this, and many
42 # examples use this variable to calculate timings. Do not add a "UL" here.
47 # comment out to disable the options.
49 MOUSEKEY_ENABLE = yes # Mouse keys
50 EXTRAKEY_ENABLE = yes # Audio control and System control
51 #NKRO_ENABLE = yes # USB Nkey Rollover
52 NO_UART = yes # UART is unavailable
56 #---------------- Programming Options --------------------------
58 # Type: avrdude -c ? to get a full listing.
59 AVRDUDE_PROGRAMMER = usbasp
61 AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
62 #AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
64 # Uncomment the following if you want avrdude's erase cycle counter.
65 # Note that this counter needs to be initialized first using -Yn,
67 #AVRDUDE_ERASE_COUNTER = -y
69 # Uncomment the following if you do /not/ wish a verification to be
70 # performed after programming the device.
71 #AVRDUDE_NO_VERIFY = -V
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
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)
84 PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
87 # Boot Section Size in bytes
89 # Atmel DFU loader 4096
90 # LUFA bootloader 4096
92 OPT_DEFS += -DBOOT_SIZE=2048
96 VPATH += $(TARGET_DIR)
100 include $(TOP_DIR)/protocol/vusb.mk
101 include $(TOP_DIR)/protocol.mk
102 include $(TOP_DIR)/common.mk
103 include $(TOP_DIR)/rules.mk