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