]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - converter/adb_usb/Makefile
ibmpc_usb: Update prebuilt firmware hex files
[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 # Interrupt driven control endpoint task(+60)
57 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
58
59
60 # Boot Section Size in *bytes*
61 #   Teensy halfKay   512
62 #   Teensy++ halfKay 1024
63 #   Atmel DFU loader 4096       for TMK Converter rev.1/rev.2
64 #   LUFA bootloader  4096
65 #   USBaspLoader     2048
66 BOOTLOADER_SIZE ?= 4096
67 OPT_DEFS += -DBOOTLOADER_SIZE=$(BOOTLOADER_SIZE)
68
69
70 # Build Options
71 #   comment out to disable the options.
72 #
73 BOOTMAGIC_ENABLE ?= no          # Virtual DIP switch configuration(+1000)
74 MOUSEKEY_ENABLE ?= yes          # Mouse keys(+4700)
75 EXTRAKEY_ENABLE ?= yes          # Audio control and System control(+450)
76 CONSOLE_ENABLE ?= yes           # Console for debug(+400)
77 COMMAND_ENABLE ?= yes           # Commands for debug and configuration
78 NKRO_ENABLE ?= no               # USB Nkey Rollover
79 ADB_MOUSE_ENABLE ?= yes         # ADB Mouse support
80 UNIMAP_ENABLE ?= yes            # Use unimap
81 ACTIONMAP_ENABLE ?= no          # Use 16bit actionmap instead of 8bit keymap
82 KEYMAP_SECTION_ENABLE ?= yes    # fixed address keymap for keymap editor
83
84 # ADB Mice need acceleration for todays much bigger screens. 
85 ADB_MOUSE_MAXACC ?= 8
86 OPT_DEFS += -DADB_MOUSE_MAXACC=$(ADB_MOUSE_MAXACC)
87
88
89 # Optimize size but this may cause error "relocation truncated to fit"
90 #EXTRALDFLAGS = -Wl,--relax
91
92
93 #
94 # Keymap file
95 #
96 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
97     KEYMAP_FILE = unimap
98 else
99     ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
100         KEYMAP_FILE = actionmap
101     else
102         KEYMAP_FILE = keymap
103     endif
104 endif
105 ifdef KEYMAP
106     SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
107 else
108     SRC := $(KEYMAP_FILE)_plain.c $(SRC)
109 endif
110
111
112 # Search Path
113 VPATH += $(TARGET_DIR)
114 VPATH += $(TMK_DIR)
115
116 include $(TMK_DIR)/protocol/lufa.mk
117 include $(TMK_DIR)/protocol.mk
118 include $(TMK_DIR)/common.mk
119 include $(TMK_DIR)/rules.mk