]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/atreus/rules.mk
[Keyboard] Added RAMA KOYU (#5512)
[qmk_firmware.git] / keyboards / atreus / rules.mk
1
2
3 ifdef TEENSY2
4     OPT_DEFS += -DATREUS_TEENSY2
5     ATREUS_UPLOAD_COMMAND = teensy_loader_cli -w -mmcu=$(MCU) $(TARGET).hex
6 else
7     OPT_DEFS += -DATREUS_ASTAR
8 ifdef PCBDOWN
9     OPT_DEFS += -DPCBDOWN
10 endif
11     ATREUS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \
12                             avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB)
13 endif
14
15 # MCU name
16 #MCU = at90usb1287
17 MCU = 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.
30 F_CPU = 16000000
31
32 #
33 # LUFA specific
34 #
35 # Target architecture (see library "Board Types" documentation).
36 ARCH = 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.
49 F_USB = $(F_CPU)
50
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.
55 ifdef TEENSY2
56     BOOTLOADER = halfkay
57 else
58     BOOTLOADER = caterina
59 endif
60
61 # Interrupt driven control endpoint task(+60)
62 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
63
64
65 # Build Options
66 #   comment out to disable the options.
67 #
68 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
69 MOUSEKEY_ENABLE = yes   # Mouse keys(+4700)
70 EXTRAKEY_ENABLE = yes   # Audio control and System control(+450)
71 CONSOLE_ENABLE = yes    # Console for debug(+400)
72 COMMAND_ENABLE = yes    # Commands for debug and configuration
73 # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
74 # SLEEP_LED_ENABLE = yes  # Breathing sleep LED during USB suspend
75 NKRO_ENABLE = yes               # USB Nkey Rollover - not yet supported in LUFA
76 # BACKLIGHT_ENABLE = yes  # Enable keyboard backlight functionality
77 # MIDI_ENABLE = YES             # MIDI controls
78 UNICODE_ENABLE = YES            # Unicode
79 # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID
80
81 USB = /dev/cu.usbmodem1411