diff options
Diffstat (limited to 'keyboards/ergodox_ez/rules.mk')
| -rw-r--r-- | keyboards/ergodox_ez/rules.mk | 72 |
1 files changed, 12 insertions, 60 deletions
diff --git a/keyboards/ergodox_ez/rules.mk b/keyboards/ergodox_ez/rules.mk index 2882072a6..dbc35f683 100644 --- a/keyboards/ergodox_ez/rules.mk +++ b/keyboards/ergodox_ez/rules.mk | |||
| @@ -1,68 +1,16 @@ | |||
| 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 | QUANTUM_LIB_SRC += i2c_master.c | ||
| 20 | |||
| 21 | # MCU name | 1 | # MCU name |
| 22 | MCU = atmega32u4 | 2 | MCU = atmega32u4 |
| 23 | 3 | ||
| 24 | # Processor frequency. | 4 | # Bootloader selection |
| 25 | # This will define a symbol, F_CPU, in all source code files equal to the | 5 | # Teensy halfkay |
| 26 | # processor frequency in Hz. You can then use this symbol in your source code to | 6 | # Pro Micro caterina |
| 27 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | 7 | # Atmel DFU atmel-dfu |
| 28 | # automatically to create a 32-bit value in your source code. | 8 | # LUFA DFU lufa-dfu |
| 29 | # | 9 | # QMK DFU qmk-dfu |
| 30 | # This will be an integer division of F_USB below, as it is sourced by | 10 | # ATmega32A bootloadHID |
| 31 | # F_USB after it has run through any CPU prescalers. Note that this value | 11 | # ATmega328P USBasp |
| 32 | # does not *change* the processor frequency - it should merely be updated to | ||
| 33 | # reflect the processor speed set externally so that the code can use accurate | ||
| 34 | # software delays. | ||
| 35 | F_CPU = 16000000 | ||
| 36 | |||
| 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 | # Bootloader | ||
| 58 | # This definition is optional, and if your keyboard supports multiple bootloaders of | ||
| 59 | # different sizes, comment this out, and the correct address will be loaded | ||
| 60 | # automatically (+60). See bootloader.mk for all options. | ||
| 61 | BOOTLOADER = halfkay | 12 | BOOTLOADER = halfkay |
| 62 | 13 | ||
| 63 | # Interrupt driven control endpoint task(+60) | ||
| 64 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
| 65 | |||
| 66 | # If you have Left LEDs (see | 14 | # If you have Left LEDs (see |
| 67 | # https://geekhack.org/index.php?topic=22780.msg873819#msg873819 for | 15 | # https://geekhack.org/index.php?topic=22780.msg873819#msg873819 for |
| 68 | # details), include the following define: | 16 | # details), include the following define: |
| @@ -86,4 +34,8 @@ RGBLIGHT_ENABLE = yes | |||
| 86 | RGB_MATRIX_ENABLE = no # enable later | 34 | RGB_MATRIX_ENABLE = no # enable later |
| 87 | DEBOUNCE_TYPE = eager_pr | 35 | DEBOUNCE_TYPE = eager_pr |
| 88 | 36 | ||
| 37 | # project specific files | ||
| 38 | SRC += matrix.c | ||
| 39 | QUANTUM_LIB_SRC += i2c_master.c | ||
| 40 | |||
| 89 | LAYOUTS = ergodox | 41 | LAYOUTS = ergodox |
