]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - converter/x68k_usb/Makefile
Add my keymap
[max/tmk_keyboard.git] / converter / x68k_usb / Makefile
1 # Target file name (without extension).
2 TARGET ?= x68k_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         led.c \
13         protocol/serial_uart.c
14
15 CONFIG_H = config.h
16
17
18 # MCU name
19 # atmega32u4    Teensy2.0
20 # atemga32u4    TMK Converter rev.1
21 # atemga32u2    TMK Converter rev.2
22 MCU ?= atmega32u2
23
24 # Processor frequency.
25 #     This will define a symbol, F_CPU, in all source code files equal to the
26 #     processor frequency in Hz. You can then use this symbol in your source code to
27 #     calculate timings. Do NOT tack on a 'UL' at the end, this will be done
28 #     automatically to create a 32-bit value in your source code.
29 #
30 #     This will be an integer division of F_USB below, as it is sourced by
31 #     F_USB after it has run through any CPU prescalers. Note that this value
32 #     does not *change* the processor frequency - it should merely be updated to
33 #     reflect the processor speed set externally so that the code can use accurate
34 #     software delays.
35 F_CPU ?= 16000000
36
37
38 #
39 # LUFA specific
40 #
41 # Target architecture (see library "Board Types" documentation).
42 ARCH ?= AVR8
43
44 # Input clock frequency.
45 #     This will define a symbol, F_USB, in all source code files equal to the
46 #     input clock frequency (before any prescaling is performed) in Hz. This value may
47 #     differ from F_CPU if prescaling is used on the latter, and is required as the
48 #     raw input clock is fed directly to the PLL sections of the AVR for high speed
49 #     clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
50 #     at the end, this will be done automatically to create a 32-bit value in your
51 #     source code.
52 #
53 #     If no clock division is performed on the input clock inside the AVR (via the
54 #     CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
55 F_USB ?= $(F_CPU)
56
57
58 # Boot Section Size in *bytes*
59 #   Teensy halfKay   512
60 #   Teensy++ halfKay 1024
61 #   Atmel DFU loader 4096       for TMK Converter rev.1/rev.2
62 #   LUFA bootloader  4096
63 #   USBaspLoader     2048
64 OPT_DEFS += -DBOOTLOADER_SIZE=4096
65
66
67 # Build Options
68 #   comment out to disable the options.
69 #
70 #BOOTMAGIC_ENABLE = yes # 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 #UNIMAP_ENABLE = yes
76 #ACTIONMAP_ENABLE = yes         # Use 16bit actionmap instead of 8bit keymap
77 #KEYMAP_SECTION_ENABLE = yes    # fixed address keymap for keymap editor
78
79
80 #
81 # Keymap file
82 #
83 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
84     KEYMAP_FILE = unimap
85 else
86     ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
87         KEYMAP_FILE = actionmap
88     else
89         KEYMAP_FILE = keymap
90     endif
91 endif
92 ifdef KEYMAP
93     SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
94 else
95     SRC := $(KEYMAP_FILE).c $(SRC)
96 endif
97
98
99 # Search Path
100 VPATH += $(TARGET_DIR)
101 VPATH += $(TMK_DIR)
102
103 include $(TMK_DIR)/protocol/lufa.mk
104 include $(TMK_DIR)/protocol.mk
105 include $(TMK_DIR)/common.mk
106 include $(TMK_DIR)/rules.mk