]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/atreus/Makefile
72b694faac1f12ec78ff246665ff7cebd2acb7cc
[qmk_firmware.git] / keyboard / atreus / Makefile
1
2
3 ifdef TEENSY2
4     OPT_DEFS += -DATREUS_TEENSY2
5     ATRUES_UPLOAD_COMMAND = teensy_loader_cli -w -mmcu=$(MCU) $(TARGET).hex
6 else
7     OPT_DEFS += -DATREUS_ASTAR
8     ATRUES_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \
9                             avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB)
10 endif
11
12 # MCU name
13 #MCU = at90usb1287
14 MCU = atmega32u4
15
16 # Processor frequency.
17 #     This will define a symbol, F_CPU, in all source code files equal to the
18 #     processor frequency in Hz. You can then use this symbol in your source code to
19 #     calculate timings. Do NOT tack on a 'UL' at the end, this will be done
20 #     automatically to create a 32-bit value in your source code.
21 #
22 #     This will be an integer division of F_USB below, as it is sourced by
23 #     F_USB after it has run through any CPU prescalers. Note that this value
24 #     does not *change* the processor frequency - it should merely be updated to
25 #     reflect the processor speed set externally so that the code can use accurate
26 #     software delays.
27 F_CPU = 16000000
28
29
30 #
31 # LUFA specific
32 #
33 # Target architecture (see library "Board Types" documentation).
34 ARCH = AVR8
35
36 # Input clock frequency.
37 #     This will define a symbol, F_USB, in all source code files equal to the
38 #     input clock frequency (before any prescaling is performed) in Hz. This value may
39 #     differ from F_CPU if prescaling is used on the latter, and is required as the
40 #     raw input clock is fed directly to the PLL sections of the AVR for high speed
41 #     clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
42 #     at the end, this will be done automatically to create a 32-bit value in your
43 #     source code.
44 #
45 #     If no clock division is performed on the input clock inside the AVR (via the
46 #     CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
47 F_USB = $(F_CPU)
48
49 # Interrupt driven control endpoint task(+60)
50 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
51
52
53 # Boot Section Size in *bytes*
54 #   Teensy halfKay   512
55 #   Teensy++ halfKay 1024
56 #   Atmel DFU loader 4096
57 #   LUFA bootloader  4096
58 #   USBaspLoader     2048
59 OPT_DEFS += -DBOOTLOADER_SIZE=4096
60
61
62 # Build Options
63 #   comment out to disable the options.
64 #
65 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
66 MOUSEKEY_ENABLE ?= yes  # Mouse keys(+4700)
67 EXTRAKEY_ENABLE ?= yes  # Audio control and System control(+450)
68 CONSOLE_ENABLE ?= yes   # Console for debug(+400)
69 COMMAND_ENABLE ?= yes    # Commands for debug and configuration
70 # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
71 # SLEEP_LED_ENABLE ?= yes  # Breathing sleep LED during USB suspend
72 NKRO_ENABLE ?= yes              # USB Nkey Rollover - not yet supported in LUFA
73 # BACKLIGHT_ENABLE ?= yes  # Enable keyboard backlight functionality
74 # MIDI_ENABLE ?= YES            # MIDI controls
75 UNICODE_ENABLE ?= YES           # Unicode
76 # BLUETOOTH_ENABLE ?= yes # Enable Bluetooth with the Adafruit EZ-Key HID
77
78
79 ifndef QUANTUM_DIR
80         include ../../Makefile
81 endif
82
83 USB ?= /dev/cu.usbmodem1411
84
85 upload: build
86         $(ATRUES_UPLOAD_COMMAND)
87