diff options
| author | fauxpark <fauxpark@gmail.com> | 2019-10-29 06:08:00 +1100 |
|---|---|---|
| committer | Joel Challis <git@zvecr.com> | 2019-10-28 19:08:00 +0000 |
| commit | 6d7c6d4fd6a4af8e0355b5d10c68db3274c1a7f8 (patch) | |
| tree | ad3f2a66072e215b06f73a165c0dd0662fbc9b81 /keyboards/sx60 | |
| parent | 8bc90ee20c79e5166283cd2df738ea8ec63e4c69 (diff) | |
| download | qmk_firmware-6d7c6d4fd6a4af8e0355b5d10c68db3274c1a7f8.tar.gz qmk_firmware-6d7c6d4fd6a4af8e0355b5d10c68db3274c1a7f8.zip | |
Cleanup rules.mk for 32U4 keyboards, R-S (#7182)
Diffstat (limited to 'keyboards/sx60')
| -rw-r--r-- | keyboards/sx60/keymaps/default/rules.mk | 0 | ||||
| -rwxr-xr-x | keyboards/sx60/rules.mk | 56 |
2 files changed, 13 insertions, 43 deletions
diff --git a/keyboards/sx60/keymaps/default/rules.mk b/keyboards/sx60/keymaps/default/rules.mk deleted file mode 100644 index e69de29bb..000000000 --- a/keyboards/sx60/keymaps/default/rules.mk +++ /dev/null | |||
diff --git a/keyboards/sx60/rules.mk b/keyboards/sx60/rules.mk index 0381293ce..4c711dc88 100755 --- a/keyboards/sx60/rules.mk +++ b/keyboards/sx60/rules.mk | |||
| @@ -1,49 +1,15 @@ | |||
| 1 | # # project specific files | ||
| 2 | SRC = twimaster.c \ | ||
| 3 | matrix.c | ||
| 4 | |||
| 5 | # MCU name | 1 | # MCU name |
| 6 | MCU = atmega32u4 | 2 | MCU = atmega32u4 |
| 7 | 3 | ||
| 8 | # Processor frequency. | 4 | # Bootloader selection |
| 9 | # This will define a symbol, F_CPU, in all source code files equal to the | 5 | # Teensy halfkay |
| 10 | # processor frequency in Hz. You can then use this symbol in your source code to | 6 | # Pro Micro caterina |
| 11 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | 7 | # Atmel DFU atmel-dfu |
| 12 | # automatically to create a 32-bit value in your source code. | 8 | # LUFA DFU lufa-dfu |
| 13 | # | 9 | # QMK DFU qmk-dfu |
| 14 | # This will be an integer division of F_USB below, as it is sourced by | 10 | # ATmega32A bootloadHID |
| 15 | # F_USB after it has run through any CPU prescalers. Note that this value | 11 | # ATmega328P USBasp |
| 16 | # does not *change* the processor frequency - it should merely be updated to | 12 | BOOTLOADER = atmel-dfu |
| 17 | # reflect the processor speed set externally so that the code can use accurate | ||
| 18 | # software delays. | ||
| 19 | F_CPU = 16000000 | ||
| 20 | |||
| 21 | # | ||
| 22 | # LUFA specific | ||
| 23 | # | ||
| 24 | # Target architecture (see library "Board Types" documentation). | ||
| 25 | ARCH = AVR8 | ||
| 26 | |||
| 27 | # Input clock frequency. | ||
| 28 | # This will define a symbol, F_USB, in all source code files equal to the | ||
| 29 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
| 30 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
| 31 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
| 32 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
| 33 | # at the end, this will be done automatically to create a 32-bit value in your | ||
| 34 | # source code. | ||
| 35 | # | ||
| 36 | # If no clock division is performed on the input clock inside the AVR (via the | ||
| 37 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
| 38 | F_USB = $(F_CPU) | ||
| 39 | |||
| 40 | # Interrupt driven control endpoint task(+60) | ||
| 41 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
| 42 | |||
| 43 | |||
| 44 | # Boot Section Size in *bytes* | ||
| 45 | OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
| 46 | |||
| 47 | 13 | ||
| 48 | # Build Options | 14 | # Build Options |
| 49 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| @@ -59,3 +25,7 @@ BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | |||
| 59 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE ?= no |
| 60 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE ?= no |
| 61 | CUSTOM_MATRIX ?= yes | 27 | CUSTOM_MATRIX ?= yes |
| 28 | |||
| 29 | # project specific files | ||
| 30 | SRC = twimaster.c \ | ||
| 31 | matrix.c | ||
