diff options
author | Ryan <fauxpark@gmail.com> | 2022-01-06 06:55:46 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-06 06:55:46 +1100 |
commit | 5fb93934d0f3319547cc6313845fe5a96f8b7798 (patch) | |
tree | f03930762c7477d6ef7506bceeb6c27b35994f2f /keyboards/mode | |
parent | 99e11f482314e3fa061f06e193663544fa938a8c (diff) | |
download | qmk_firmware-5fb93934d0f3319547cc6313845fe5a96f8b7798.tar.gz qmk_firmware-5fb93934d0f3319547cc6313845fe5a96f8b7798.zip |
Fixes for bootloader refactor build failures (#15638)
Diffstat (limited to 'keyboards/mode')
-rw-r--r-- | keyboards/mode/m65s/rules.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/keyboards/mode/m65s/rules.mk b/keyboards/mode/m65s/rules.mk index ed43a7bc77..bb3ebaee28 100644 --- a/keyboards/mode/m65s/rules.mk +++ b/keyboards/mode/m65s/rules.mk @@ -1,6 +1,9 @@ # MCU name MCU = STM32F401 +# Bootloader selection +BOOTLOADER = stm32-dfu + # Build Options # change yes to no to disable # @@ -14,6 +17,6 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow AUDIO_ENABLE = no # Audio output EEPROM_DRIVER = i2c + # Enter lower-power sleep mode when on the ChibiOS idle thread OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE -DDEBUG_EEPROM_OUTPUT=TRUE -STM32_BOOTLOADER_ADDRESS = 0x1FFF0000 |