aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBalz Guenat <balz.guenat@gmail.com>2017-12-09 00:20:10 +0100
committerJack Humbert <jack.humb@gmail.com>2017-12-10 00:40:19 -0500
commit6d1b45fb84d4f57193fd1db5bd9307842f03f7e9 (patch)
tree87f25b733b67cf56b2d4bc912d6f14bd6c4d2436
parent2c2e103457eafddfc678bcef5b24b419990e2ca3 (diff)
downloadqmk_firmware-6d1b45fb84d4f57193fd1db5bd9307842f03f7e9.tar.gz
qmk_firmware-6d1b45fb84d4f57193fd1db5bd9307842f03f7e9.zip
change the ?= assignments to =
-rw-r--r--keyboards/bananasplit/rules.mk22
1 files changed, 11 insertions, 11 deletions
diff --git a/keyboards/bananasplit/rules.mk b/keyboards/bananasplit/rules.mk
index 168fa06d1..3e8f70690 100644
--- a/keyboards/bananasplit/rules.mk
+++ b/keyboards/bananasplit/rules.mk
@@ -1,5 +1,5 @@
1# MCU name 1# MCU name
2MCU ?= atmega32u4 2MCU = atmega32u4
3 3
4# Processor frequency. 4# Processor frequency.
5# This will define a symbol, F_CPU, in all source code files equal to the 5# This will define a symbol, F_CPU, in all source code files equal to the
@@ -12,14 +12,14 @@ MCU ?= atmega32u4
12# does not *change* the processor frequency - it should merely be updated to 12# does not *change* the processor frequency - it should merely be updated to
13# reflect the processor speed set externally so that the code can use accurate 13# reflect the processor speed set externally so that the code can use accurate
14# software delays. 14# software delays.
15F_CPU ?= 16000000 15F_CPU = 16000000
16 16
17 17
18# 18#
19# LUFA specific 19# LUFA specific
20# 20#
21# Target architecture (see library "Board Types" documentation). 21# Target architecture (see library "Board Types" documentation).
22ARCH ?= AVR8 22ARCH = AVR8
23 23
24# Input clock frequency. 24# Input clock frequency.
25# This will define a symbol, F_USB, in all source code files equal to the 25# This will define a symbol, F_USB, in all source code files equal to the
@@ -32,7 +32,7 @@ ARCH ?= AVR8
32# 32#
33# If no clock division is performed on the input clock inside the AVR (via the 33# If no clock division is performed on the input clock inside the AVR (via the
34# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. 34# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
35F_USB ?= $(F_CPU) 35F_USB = $(F_CPU)
36 36
37# Interrupt driven control endpoint task(+60) 37# Interrupt driven control endpoint task(+60)
38OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT 38OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
@@ -50,14 +50,14 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096
50# Build Options 50# Build Options
51# comment out to disable the options. 51# comment out to disable the options.
52# 52#
53BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000) 53BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
54MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) 54MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
55EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) 55EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
56CONSOLE_ENABLE ?= yes # Console for debug(+400) 56CONSOLE_ENABLE = yes # Console for debug(+400)
57COMMAND_ENABLE ?= yes # Commands for debug and configuration 57COMMAND_ENABLE = yes # Commands for debug and configuration
58#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend 58#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
59NKRO_ENABLE ?= yes # USB Nkey Rollover - not yet supported in LUFA 59NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
60BACKLIGHT_ENABLE ?= yes 60BACKLIGHT_ENABLE = yes
61 61
62 62
63# Optimize size but this may cause error "relocation truncated to fit" 63# Optimize size but this may cause error "relocation truncated to fit"