From bd955a339f1939ba5baf17c4f69b5bb92edb8a9a Mon Sep 17 00:00:00 2001 From: andreika-git Date: Sun, 23 Feb 2025 00:58:34 +0200 Subject: [PATCH] OpenBLT: Make BackDoorInitHook() overridable --- firmware/hw_layer/openblt/hooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/hw_layer/openblt/hooks.c b/firmware/hw_layer/openblt/hooks.c index c2add67d75..7013dd52b2 100644 --- a/firmware/hw_layer/openblt/hooks.c +++ b/firmware/hw_layer/openblt/hooks.c @@ -51,7 +51,7 @@ ** \return none. ** ****************************************************************************************/ -void BackDoorInitHook(void) +__attribute__((weak)) void BackDoorInitHook(void) { } /*** end of BackDoorInitHook ***/