]> git.gir.st - tmk_keyboard.git/blob - keyboard/onekey/Makefile.vusb
onekey: Fix for V-USB of ATtiny85 and key scan
[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 onekey.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 MCU = attiny85
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 = 12000000
31
32
33 # Build Options
34 # comment out to disable the options.
35 #
36 #MOUSEKEY_ENABLE = yes # Mouse keys
37 #EXTRAKEY_ENABLE = yes # Audio control and System control
38 #NKRO_ENABLE = yes # USB Nkey Rollover
39 NO_UART = yes # No UART debug(V-USB)
40
41 OPT_DEFS += -DNO_ACTION_TAPPING
42 OPT_DEFS += -DNO_ACTION_LAYER
43 OPT_DEFS += -DNO_ACTION_MACRO
44
45
46
47 #---------------- Programming Options --------------------------
48 AVRDUDE = avrdude
49 # Type: avrdude -c ? to get a full listing.
50 AVRDUDE_PROGRAMMER = usbasp
51 AVRDUDE_PORT =
52 AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
53 #AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
54
55 # Uncomment the following if you want avrdude's erase cycle counter.
56 # Note that this counter needs to be initialized first using -Yn,
57 # see avrdude manual.
58 #AVRDUDE_ERASE_COUNTER = -y
59
60 # Uncomment the following if you do /not/ wish a verification to be
61 # performed after programming the device.
62 #AVRDUDE_NO_VERIFY = -V
63
64 # Increase verbosity level. Please use this when submitting bug
65 # reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
66 # to submit bug reports.
67 #AVRDUDE_VERBOSE = -v -v
68
69 #AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
70 AVRDUDE_FLAGS = -p $(MCU) -c $(AVRDUDE_PROGRAMMER)
71 AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
72 AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
73 AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
74
75 PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
76
77
78 # Boot Section Size in bytes
79 # Teensy halfKay 512
80 # Atmel DFU loader 4096
81 # LUFA bootloader 4096
82 # USBasp 2048
83 OPT_DEFS += -DBOOTLOADER_SIZE=2048
84
85
86 # Search Path
87 VPATH += $(TARGET_DIR)
88 VPATH += $(TMK_DIR)
89
90
91 include $(TMK_DIR)/protocol.mk
92 include $(TMK_DIR)/common.mk
93 include $(TMK_DIR)/protocol/vusb.mk
94 include $(TMK_DIR)/rules.mk
Imprint / Impressum