forgot to update the define usage when 90 degree rotation was moved to a runtime...
[jackhill/qmk/firmware.git] / keyboards / atreus / rules.mk
CommitLineData
44441de8
FS
1
2
3ifdef TEENSY2
4 OPT_DEFS += -DATREUS_TEENSY2
a9e56186 5 ATREUS_UPLOAD_COMMAND = teensy_loader_cli -w -mmcu=$(MCU) $(TARGET).hex
44441de8
FS
6else
7 OPT_DEFS += -DATREUS_ASTAR
37d30552
AS
8ifdef PCBDOWN
9 OPT_DEFS += -DPCBDOWN
10endif
a9e56186 11 ATREUS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \
44441de8
FS
12 avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB)
13endif
14
15# MCU name
16#MCU = at90usb1287
17MCU = atmega32u4
18
19# Processor frequency.
20# This will define a symbol, F_CPU, in all source code files equal to the
21# processor frequency in Hz. You can then use this symbol in your source code to
22# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
23# automatically to create a 32-bit value in your source code.
24#
25# This will be an integer division of F_USB below, as it is sourced by
26# F_USB after it has run through any CPU prescalers. Note that this value
27# does not *change* the processor frequency - it should merely be updated to
28# reflect the processor speed set externally so that the code can use accurate
29# software delays.
30F_CPU = 16000000
31
44441de8
FS
32#
33# LUFA specific
34#
35# Target architecture (see library "Board Types" documentation).
36ARCH = AVR8
37
38# Input clock frequency.
39# This will define a symbol, F_USB, in all source code files equal to the
40# input clock frequency (before any prescaling is performed) in Hz. This value may
41# differ from F_CPU if prescaling is used on the latter, and is required as the
42# raw input clock is fed directly to the PLL sections of the AVR for high speed
43# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
44# at the end, this will be done automatically to create a 32-bit value in your
45# source code.
46#
47# If no clock division is performed on the input clock inside the AVR (via the
48# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
49F_USB = $(F_CPU)
50
9fdc2762
JH
51# Bootloader
52# This definition is optional, and if your keyboard supports multiple bootloaders of
53# different sizes, comment this out, and the correct address will be loaded
54# automatically (+60). See bootloader.mk for all options.
55ifdef TEENSY2
56 BOOTLOADER = halfkay
57else
58 BOOTLOADER = caterina
59endif
60
44441de8
FS
61# Interrupt driven control endpoint task(+60)
62OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
63
64
44441de8
FS
65# Build Options
66# comment out to disable the options.
67#
68#BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
b476d65b
JH
69MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
70EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
71CONSOLE_ENABLE = yes # Console for debug(+400)
72COMMAND_ENABLE = yes # Commands for debug and configuration
44441de8 73# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
b476d65b
JH
74# SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
75NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
76# BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
77# MIDI_ENABLE = YES # MIDI controls
78UNICODE_ENABLE = YES # Unicode
79# BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID
44441de8 80
b476d65b 81USB = /dev/cu.usbmodem1411