From 959a3cfb6c9d7de4cd781990c76c26f1f5e133ee Mon Sep 17 00:00:00 2001 From: Timofey Titovets Date: Sat, 11 Apr 2026 19:58:49 +0200 Subject: [PATCH] stm32: G4 enable katapult request Signed-off-by: Timofey Titovets --- src/stm32/stm32g4.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stm32/stm32g4.c b/src/stm32/stm32g4.c index 3301071e0..040db567a 100644 --- a/src/stm32/stm32g4.c +++ b/src/stm32/stm32g4.c @@ -6,6 +6,7 @@ #include "autoconf.h" // CONFIG_CLOCK_REF_FREQ #include "board/armcm_boot.h" // VectorTable +#include "board/armcm_reset.h" // try_request_canboot #include "board/irq.h" // irq_disable #include "board/misc.h" // bootloader_request #include "command.h" // DECL_CONSTANT_STR @@ -162,6 +163,7 @@ clock_setup(void) void bootloader_request(void) { + try_request_canboot(); dfu_reboot(); }