diff options
author | fauxpark <fauxpark@gmail.com> | 2019-10-22 15:43:18 +1100 |
---|---|---|
committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-10-21 21:43:18 -0700 |
commit | 2ee961c9e873d577e711431ae0960aa21629525e (patch) | |
tree | 0ab1aa27f879c732cf29a75f49e7d6ab3e4ad125 /keyboards/kudox_game | |
parent | c44aff5f18b287bae718c934a9943eae97585cba (diff) | |
download | qmk_firmware-2ee961c9e873d577e711431ae0960aa21629525e.tar.gz qmk_firmware-2ee961c9e873d577e711431ae0960aa21629525e.zip |
Cleanup rules.mk for 32U4 keyboards, I-K (#7097)
* Cleanup rules.mk for 32U4 keyboards, I-K
* Clean up ivy rules.mk
Diffstat (limited to 'keyboards/kudox_game')
-rw-r--r-- | keyboards/kudox_game/keymaps/default/rules.mk | 0 | ||||
-rw-r--r-- | keyboards/kudox_game/rules.mk | 40 |
2 files changed, 2 insertions, 38 deletions
diff --git a/keyboards/kudox_game/keymaps/default/rules.mk b/keyboards/kudox_game/keymaps/default/rules.mk deleted file mode 100644 index e69de29bb2..0000000000 --- a/keyboards/kudox_game/keymaps/default/rules.mk +++ /dev/null diff --git a/keyboards/kudox_game/rules.mk b/keyboards/kudox_game/rules.mk index d564eddf90..71d7cf2702 100644 --- a/keyboards/kudox_game/rules.mk +++ b/keyboards/kudox_game/rules.mk @@ -1,50 +1,14 @@ # MCU name MCU = atmega32u4 -# Processor frequency. -# This will define a symbol, F_CPU, in all source code files equal to the -# processor frequency in Hz. You can then use this symbol in your source code to -# calculate timings. Do NOT tack on a 'UL' at the end, this will be done -# automatically to create a 32-bit value in your source code. -# -# This will be an integer division of F_USB below, as it is sourced by -# F_USB after it has run through any CPU prescalers. Note that this value -# does not *change* the processor frequency - it should merely be updated to -# reflect the processor speed set externally so that the code can use accurate -# software delays. -F_CPU = 16000000 - - -# -# LUFA specific -# -# Target architecture (see library "Board Types" documentation). -ARCH = AVR8 - -# Input clock frequency. -# This will define a symbol, F_USB, in all source code files equal to the -# input clock frequency (before any prescaling is performed) in Hz. This value may -# differ from F_CPU if prescaling is used on the latter, and is required as the -# raw input clock is fed directly to the PLL sections of the AVR for high speed -# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' -# at the end, this will be done automatically to create a 32-bit value in your -# source code. -# -# If no clock division is performed on the input clock inside the AVR (via the -# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. -F_USB = $(F_CPU) - -# Interrupt driven control endpoint task(+60) -OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT - - # Bootloader selection # Teensy halfkay # Pro Micro caterina # Atmel DFU atmel-dfu # LUFA DFU lufa-dfu # QMK DFU qmk-dfu -# atmega32a bootloadHID +# ATmega32A bootloadHID +# ATmega328P USBasp BOOTLOADER = caterina # Build Options |