]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - converter/adb_usb/Makefile
Merge remote-tracking branch 'tmk/master'
[max/tmk_keyboard.git] / converter / adb_usb / Makefile
1 # Target file name (without extension).
2 TARGET ?= adb_usb
3
4 # Directory common source filess exist
5 TMK_DIR ?= ../../tmk_core
6
7 # Directory keyboard dependent files exist
8 TARGET_DIR ?= .
9
10 # project specific files
11 SRC ?=  matrix.c \
12         adb.c
13
14 CONFIG_H = config.h
15
16
17 # MCU name
18 # atmega32u4    Teensy2.0
19 # atemga32u4    TMK Converter rev.1
20 # atemga32u2    TMK Converter rev.2
21 MCU ?= atmega32u2
22
23 # Processor frequency.
24 #     This will define a symbol, F_CPU, in all source code files equal to the
25 #     processor frequency in Hz. You can then use this symbol in your source code to
26 #     calculate timings. Do NOT tack on a 'UL' at the end, this will be done
27 #     automatically to create a 32-bit value in your source code.
28 #
29 #     This will be an integer division of F_USB below, as it is sourced by
30 #     F_USB after it has run through any CPU prescalers. Note that this value
31 #     does not *change* the processor frequency - it should merely be updated to
32 #     reflect the processor speed set externally so that the code can use accurate
33 #     software delays.
34 F_CPU ?= 16000000
35
36
37 #
38 # LUFA specific
39 #
40 # Target architecture (see library "Board Types" documentation).
41 ARCH ?= AVR8
42
43 # Input clock frequency.
44 #     This will define a symbol, F_USB, in all source code files equal to the
45 #     input clock frequency (before any prescaling is performed) in Hz. This value may
46 #     differ from F_CPU if prescaling is used on the latter, and is required as the
47 #     raw input clock is fed directly to the PLL sections of the AVR for high speed
48 #     clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
49 #     at the end, this will be done automatically to create a 32-bit value in your
50 #     source code.
51 #
52 #     If no clock division is performed on the input clock inside the AVR (via the
53 #     CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
54 F_USB ?= $(F_CPU)
55
56
57 # Boot Section Size in *bytes*
58 #   Teensy halfKay   512
59 #   Teensy++ halfKay 1024
60 #   Atmel DFU loader 4096       for TMK Converter rev.1/rev.2
61 #   LUFA bootloader  4096
62 #   USBaspLoader     2048
63 BOOTLOADER_SIZE ?= 4096
64 OPT_DEFS += -DBOOTLOADER_SIZE=$(BOOTLOADER_SIZE)
65
66
67 # Build Options
68 #   comment out to disable the options.
69 #
70 BOOTMAGIC_ENABLE ?= no          # Virtual DIP switch configuration(+1000)
71 MOUSEKEY_ENABLE ?= yes          # Mouse keys(+4700)
72 EXTRAKEY_ENABLE ?= yes          # Audio control and System control(+450)
73 CONSOLE_ENABLE ?= yes           # Console for debug(+400)
74 COMMAND_ENABLE ?= yes           # Commands for debug and configuration
75 NKRO_ENABLE ?= no               # USB Nkey Rollover
76 ADB_MOUSE_ENABLE ?= yes         # ADB Mouse support
77 UNIMAP_ENABLE ?= yes            # Use unimap
78 ACTIONMAP_ENABLE ?= no          # Use 16bit actionmap instead of 8bit keymap
79 KEYMAP_SECTION_ENABLE ?= yes    # fixed address keymap for keymap editor
80
81 # ADB Mice need acceleration for todays much bigger screens. 
82 ADB_MOUSE_MAXACC ?= 8
83 OPT_DEFS += -DADB_MOUSE_MAXACC=$(ADB_MOUSE_MAXACC)
84
85
86 # Optimize size but this may cause error "relocation truncated to fit"
87 #EXTRALDFLAGS = -Wl,--relax
88
89
90 #
91 # Keymap file
92 #
93 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
94     KEYMAP_FILE = unimap
95 else
96     ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
97         KEYMAP_FILE = actionmap
98     else
99         KEYMAP_FILE = keymap
100     endif
101 endif
102 ifdef KEYMAP
103     SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
104 else
105     SRC := $(KEYMAP_FILE)_plain.c $(SRC)
106 endif
107
108
109 # Search Path
110 VPATH += $(TARGET_DIR)
111 VPATH += $(TMK_DIR)
112
113 include $(TMK_DIR)/protocol/lufa.mk
114 include $(TMK_DIR)/protocol.mk
115 include $(TMK_DIR)/common.mk
116 include $(TMK_DIR)/rules.mk