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