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