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