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