summaryrefslogtreecommitdiff
path: root/platforms/chibios/bootloaders
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-02-03 19:22:49 +1100
committerGitHub <noreply@github.com>2022-02-03 19:22:49 +1100
commit0be2eaf1745e42fc5ebf19656cef40708ca19b3c (patch)
tree2080f028442672f6aa45780596eb2eb8b64212df /platforms/chibios/bootloaders
parent0d7ff026b1cabc6512f218b3d073832428b3942d (diff)
Create a build error if no bootloader is specified. (#16181)
* Create a build error if no bootloader is specified. * Update builddefs/bootloader.mk Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'platforms/chibios/bootloaders')
-rw-r--r--platforms/chibios/bootloaders/custom.c (renamed from platforms/chibios/bootloaders/none.c)2
1 files changed, 0 insertions, 2 deletions
diff --git a/platforms/chibios/bootloaders/none.c b/platforms/chibios/bootloaders/custom.c
index 8379d35abf..bba9fc4637 100644
--- a/platforms/chibios/bootloaders/none.c
+++ b/platforms/chibios/bootloaders/custom.c
@@ -16,8 +16,6 @@
#include "bootloader.h"
-#pragma message "Unknown bootloader set, you may not be able to enter bootloader using software reset"
-
__attribute__((weak)) void bootloader_jump(void) {}
__attribute__((weak)) void enter_bootloader_mode_if_requested(void) {}