diff options
author | Ryan <fauxpark@gmail.com> | 2020-06-15 20:06:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 03:06:10 -0700 |
commit | 44d93285d1e5ae0fdaaaab33aa15ffab456b9434 (patch) | |
tree | 81c0dac4947bec1fd3fdf12c583d8b21a9031a53 /keyboards/handwired/onekey/blackpill_f411/rules.mk | |
parent | 8e0af2f5ba1e094149ce5ce2ac4e25c462f98f23 (diff) | |
download | qmk_firmware-44d93285d1e5ae0fdaaaab33aa15ffab456b9434.tar.gz qmk_firmware-44d93285d1e5ae0fdaaaab33aa15ffab456b9434.zip |
Change ?= to = in keyboard rules.mk (#9390)
Diffstat (limited to 'keyboards/handwired/onekey/blackpill_f411/rules.mk')
-rw-r--r-- | keyboards/handwired/onekey/blackpill_f411/rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/onekey/blackpill_f411/rules.mk b/keyboards/handwired/onekey/blackpill_f411/rules.mk index 18fb92dbe8..f2e0f2b4f9 100644 --- a/keyboards/handwired/onekey/blackpill_f411/rules.mk +++ b/keyboards/handwired/onekey/blackpill_f411/rules.mk @@ -20,7 +20,7 @@ MCU = cortex-m4 ARMV = 7 USE_FPU = yes # Address of the booloader in system memory -STM32_BOOTLOADER_ADDRESS ?= 0x1FFF0000 +STM32_BOOTLOADER_ADDRESS = 0x1FFF0000 # Options to pass to dfu-util when flashing DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave |