]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - keyboard/onekey/Makefile.vusb
onkey: Fix keymap.c
[max/tmk_keyboard.git] / keyboard / onekey / Makefile.vusb
1 # Target file name (without extension).
2 TARGET = onekey_vusb
3
4 # Directory common source filess exist
5 TMK_DIR = ../../tmk_core
6
7 # Directory keyboard dependent files exist
8 TARGET_DIR = .
9
10 # keyboard dependent files
11 SRC =   keymap.c \
12         matrix.c \
13         led.c
14
15 CONFIG_H = config.h
16
17
18 # MCU name, you MUST set this to match the board you are using
19 # type "make clean" after changing this, so all files will be rebuilt
20 #MCU = atmega168p
21 MCU = atmega328p
22
23
24 # Processor frequency.
25 #   Normally the first thing your program should do is set the clock prescaler,
26 #   so your program will run at the correct speed.  You should also set this
27 #   variable to same clock speed.  The _delay_ms() macro uses this, and many
28 #   examples use this variable to calculate timings.  Do not add a "UL" here.
29 F_CPU = 12000000
30
31
32 # Build Options
33 #   comment out to disable the options.
34 #
35 #MOUSEKEY_ENABLE = yes  # Mouse keys
36 #EXTRAKEY_ENABLE = yes  # Audio control and System control
37 #NKRO_ENABLE = yes      # USB Nkey Rollover
38
39
40
41 #---------------- Programming Options --------------------------
42 AVRDUDE = avrdude
43 # Type: avrdude -c ? to get a full listing.
44 AVRDUDE_PROGRAMMER = usbasp
45 AVRDUDE_PORT =
46 AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
47 #AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
48
49 # Uncomment the following if you want avrdude's erase cycle counter.
50 # Note that this counter needs to be initialized first using -Yn,
51 # see avrdude manual.
52 #AVRDUDE_ERASE_COUNTER = -y
53
54 # Uncomment the following if you do /not/ wish a verification to be
55 # performed after programming the device.
56 #AVRDUDE_NO_VERIFY = -V
57
58 # Increase verbosity level.  Please use this when submitting bug
59 # reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude> 
60 # to submit bug reports.
61 #AVRDUDE_VERBOSE = -v -v
62
63 #AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
64 AVRDUDE_FLAGS = -p $(MCU) -c $(AVRDUDE_PROGRAMMER)
65 AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
66 AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
67 AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
68
69 PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
70
71
72 # Boot Section Size in bytes
73 #   Teensy halfKay   512
74 #   Atmel DFU loader 4096
75 #   LUFA bootloader  4096
76 #   USBasp           2048
77 OPT_DEFS += -DBOOTLOADER_SIZE=2048
78
79
80 # Search Path
81 VPATH += $(TARGET_DIR)
82 VPATH += $(TMK_DIR)
83
84
85 include $(TMK_DIR)/protocol.mk
86 include $(TMK_DIR)/common.mk
87 include $(TMK_DIR)/protocol/vusb.mk
88 include $(TMK_DIR)/rules.mk