]> git.gir.st - tmk_keyboard.git/blob - converter/news_usb/Makefile
adb_usb/matrix.c : changed size of handler_id from uint16_t to uint8_t
[tmk_keyboard.git] / converter / news_usb / Makefile
1 # Target file name (without extension).
2 TARGET = news_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 # keyboard dependent files
11 SRC = keymap.c \
12 matrix.c \
13 led.c \
14 news.c
15
16 CONFIG_H = config.h
17
18
19 # MCU name, you MUST set this to match the board you are using
20 # type "make clean" after changing this, so all files will be rebuilt
21 #MCU = at90usb162 # Teensy 1.0
22 #MCU = atmega32u4 # Teensy 2.0
23 #MCU = at90usb646 # Teensy++ 1.0
24 #MCU = at90usb1286 # Teensy++ 2.0
25 MCU ?= atmega32u2 # TMK Converter Rev.2
26
27
28 # Processor frequency.
29 # This will define a symbol, F_CPU, in all source code files equal to the
30 # processor frequency in Hz. You can then use this symbol in your source code to
31 # calculate timings. Do NOT tack on a 'UL' at the end, this will be done
32 # automatically to create a 32-bit value in your source code.
33 #
34 # This will be an integer division of F_USB below, as it is sourced by
35 # F_USB after it has run through any CPU prescalers. Note that this value
36 # does not *change* the processor frequency - it should merely be updated to
37 # reflect the processor speed set externally so that the code can use accurate
38 # software delays.
39 F_CPU = 16000000
40
41
42 #
43 # LUFA specific
44 #
45 # Target architecture (see library "Board Types" documentation).
46 ARCH = AVR8
47
48 # Input clock frequency.
49 # This will define a symbol, F_USB, in all source code files equal to the
50 # input clock frequency (before any prescaling is performed) in Hz. This value may
51 # differ from F_CPU if prescaling is used on the latter, and is required as the
52 # raw input clock is fed directly to the PLL sections of the AVR for high speed
53 # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
54 # at the end, this will be done automatically to create a 32-bit value in your
55 # source code.
56 #
57 # If no clock division is performed on the input clock inside the AVR (via the
58 # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
59 F_USB = $(F_CPU)
60
61 # Interrupt driven control endpoint task(+60)
62 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
63
64
65 # Boot Section Size in *bytes*
66 # Teensy halfKay 512
67 # Teensy++ halfKay 1024
68 # Atmel DFU loader 4096
69 # LUFA bootloader 4096
70 # USBaspLoader 2048
71 OPT_DEFS += -DBOOTLOADER_SIZE=4096
72
73
74 # Build Options
75 # *Comment out* to disable the options.
76 #
77 BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
78 MOUSEKEY_ENABLE = yes # Mouse keys(+5000)
79 EXTRAKEY_ENABLE = yes # Audio control and System control(+600)
80 CONSOLE_ENABLE = yes # Console for debug
81 COMMAND_ENABLE = yes # Commands for debug and configuration
82 #NKRO_ENABLE = yes # USB Nkey Rollover(+500)
83
84
85 # Search Path
86 VPATH += $(TARGET_DIR)
87 VPATH += $(TMK_DIR)
88
89
90 include $(TMK_DIR)/protocol.mk
91 include $(TMK_DIR)/protocol/lufa.mk
92 include $(TMK_DIR)/common.mk
93 include $(TMK_DIR)/rules.mk
Imprint / Impressum