diff options
Diffstat (limited to 'keyboards/hotdox')
-rw-r--r-- | keyboards/hotdox/rules.mk | 70 |
1 files changed, 13 insertions, 57 deletions
diff --git a/keyboards/hotdox/rules.mk b/keyboards/hotdox/rules.mk index f785cdd06..be2155205 100644 --- a/keyboards/hotdox/rules.mk +++ b/keyboards/hotdox/rules.mk | |||
@@ -1,63 +1,14 @@ | |||
1 | #---------------------------------------------------------------------------- | ||
2 | # On command line: | ||
3 | # | ||
4 | # make = Make software. | ||
5 | # | ||
6 | # make clean = Clean out built project files. | ||
7 | # | ||
8 | # That's pretty much all you need. To compile, always go make clean, | ||
9 | # followed by make. | ||
10 | # | ||
11 | # For advanced users only: | ||
12 | # make teensy = Download the hex file to the device, using teensy_loader_cli. | ||
13 | # (must have teensy_loader_cli installed). | ||
14 | # | ||
15 | #---------------------------------------------------------------------------- | ||
16 | |||
17 | # # project specific files | ||
18 | SRC = matrix.c \ | ||
19 | i2c_master.c \ | ||
20 | left.c | ||
21 | |||
22 | # MCU name | 1 | # MCU name |
23 | MCU = atmega32u4 | 2 | MCU = atmega32u4 |
24 | 3 | ||
25 | # Processor frequency. | 4 | # Bootloader selection |
26 | # This will define a symbol, F_CPU, in all source code files equal to the | 5 | # Teensy halfkay |
27 | # processor frequency in Hz. You can then use this symbol in your source code to | 6 | # Pro Micro caterina |
28 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | 7 | # Atmel DFU atmel-dfu |
29 | # automatically to create a 32-bit value in your source code. | 8 | # LUFA DFU lufa-dfu |
30 | # | 9 | # QMK DFU qmk-dfu |
31 | # This will be an integer division of F_USB below, as it is sourced by | 10 | # ATmega32A bootloadHID |
32 | # F_USB after it has run through any CPU prescalers. Note that this value | 11 | # ATmega328P USBasp |
33 | # does not *change* the processor frequency - it should merely be updated to | ||
34 | # reflect the processor speed set externally so that the code can use accurate | ||
35 | # software delays. | ||
36 | F_CPU = 16000000 | ||
37 | |||
38 | # | ||
39 | # LUFA specific | ||
40 | # | ||
41 | # Target architecture (see library "Board Types" documentation). | ||
42 | ARCH = AVR8 | ||
43 | |||
44 | # Input clock frequency. | ||
45 | # This will define a symbol, F_USB, in all source code files equal to the | ||
46 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
47 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
48 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
49 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
50 | # at the end, this will be done automatically to create a 32-bit value in your | ||
51 | # source code. | ||
52 | # | ||
53 | # If no clock division is performed on the input clock inside the AVR (via the | ||
54 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
55 | F_USB = $(F_CPU) | ||
56 | |||
57 | # Interrupt driven control endpoint task(+60) | ||
58 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
59 | |||
60 | # Boot Section | ||
61 | BOOTLOADER = atmel-dfu | 12 | BOOTLOADER = atmel-dfu |
62 | 13 | ||
63 | # Build Options | 14 | # Build Options |
@@ -79,4 +30,9 @@ SWAP_HANDS_ENABLE = no # Disable Onehand | |||
79 | RGBLIGHT_ENABLE = no | 30 | RGBLIGHT_ENABLE = no |
80 | MIDI_ENABLE = no | 31 | MIDI_ENABLE = no |
81 | 32 | ||
33 | # project specific files | ||
34 | SRC = matrix.c \ | ||
35 | i2c_master.c \ | ||
36 | left.c | ||
37 | |||
82 | LAYOUTS = ergodox | 38 | LAYOUTS = ergodox |